Changes between Version 10 and Version 11 of ObjectDeveloperGuide
- Timestamp:
- 05/11/09 18:38:39 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ObjectDeveloperGuide
v10 v11 143 143 */ 144 144 145 #define INPUTITF_NAME "input" 146 145 147 #define INPUT_MAX_DATA 1024 146 148 #define INPUT_MIN_DATA 128 … … 163 165 * Description: Output stream of data 164 166 */ 167 168 #define OUTPUTITF_NAME "output" 165 169 166 170 #define OUTPUT_MAX_DATA 2048 … … 231 235 int filter_type; 232 236 233 fdi = CreateItf( “input”, FLOW_READ_ONLY);237 fdi = CreateItf(INPUTITF_NAME, FLOW_READ_ONLY); 234 238 if (fdi < 0) { 235 239 WriteLog(“Error creating flow\n”); 236 240 return 0; 237 241 } 238 fdo = CreateItf( “output”, FLOW_WRITE_ONLY);242 fdo = CreateItf(OUTPUTITF_NAME, FLOW_WRITE_ONLY); 239 243 if (fdo < 0) { 240 244 WriteLog(“Error creating flow\n”);