00001 00025 #include "bool.h" 00026 00045 #ifndef IO_QUEUE_SIZE 00046 00050 #define IO_QUEUE_SIZE 4 00051 #endif 00052 00062 void StartIOThread(); 00063 00070 void StopIOThread(); 00071 00077 typedef void (*ioOperation)(void *data); 00078 00088 int QueueOperation(ioOperation op, void *data); 00089 00098 Bool IsCancelationRequested(); 00099 00107 Bool CancelOperations(); 00108
1.5.2