123456789101112131415161718192021 |
- #include "precomp.h"
- #include "syscbx.h"
- #ifdef CBCLASS
- #undef CBCLASS
- #endif
- #define CBCLASS SysCallbackX
- START_DISPATCH;
- CB(SYSCALLBACK_GETEVENTTYPE, getEventType);
- CB(SYSCALLBACK_NOTIFY, notify);
- END_DISPATCH;
- #undef CBCLASS
|