Changeset 2085 for Whitix/branches/netchannel/include/timer.h
- Timestamp:
- 05/20/10 16:05:25 (2 years ago)
- Files:
-
- 1 modified
-
Whitix/branches/netchannel/include/timer.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/netchannel/include/timer.h
r2084 r2085 36 36 void Sleep(int milliSeconds); 37 37 38 /* Parameters for the system calls */ 39 #define TIMER_USER_PERIODIC 0x01 40 41 struct UserTimerSpec 42 { 43 DWORD secs, usecs; 44 }; 45 46 struct UserTimer 47 { 48 int flags; 49 void* data; 50 void (*func)(void* data); 51 }; 52 53 struct KeTimer 54 { 55 struct UserTimer uInfo; 56 struct Timer timer; 57 struct Thread* thread; 58 }; 59 60 struct Process; 61 int TimerProcessRemove(struct Process* current); 62 38 63 #endif
