Changeset 407
- Timestamp:
- 07/11/07 08:10:33 (1 year ago)
- Files:
-
- version_0/ext/ed.cpp (modified) (1 diff)
- version_0/ext/ed.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
version_0/ext/ed.cpp
r381 r407 222 222 if (ds) 223 223 return ds->SendOutboundData (data, data_length); 224 #ifdef OS_UNIX 224 225 PipeDescriptor *ps = dynamic_cast <PipeDescriptor*> (Bindable_t::GetObject (binding)); 225 226 if (ps) 226 227 return ps->SendOutboundData (data, data_length); 228 #endif 227 229 return -1; 228 230 } version_0/ext/ed.h
r384 r407 262 262 ********************/ 263 263 264 #ifdef OS_UNIX 264 265 class PipeDescriptor: public EventableDescriptor 265 266 { … … 303 304 void _DispatchInboundData (const char *buffer, int size); 304 305 }; 305 306 #endif // OS_UNIX 306 307 307 308
