00001 #ifndef _STREAM_SPEC_H_ 00002 #define _STREAM_SPEC_H_ 00003 00004 #include "constants.h" 00005 #include "structs.h" 00006 #include "FilterSpec.h" 00007 00008 /* Constructor and destroyer **************************************/ 00009 StreamSpec *createEmptyStreamSpec(); 00010 void destroyStreamSpec(StreamSpec *s); 00011 /******************************************************************/ 00012 00013 /* setting source and destination**********************************/ 00014 int setFrom(StreamSpec *s, FilterSpec *filter, char *portName, char *writePolicyName, char *polibName 00015 #ifdef VOID_TERM 00016 , int breakLoop 00017 #endif 00018 ); 00019 int setTo(StreamSpec *s, FilterSpec *filter, char *portName, char *readPolicyName); 00020 /******************************************************************/ 00021 00022 #endif
1.4.6