blob: 700faf6c2ac9c43586b8e2c341adac86f18d77a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef POKEREVO_OSINTERRUPT_H
#define POKEREVO_OSINTERRUPT_H
#ifdef __cplusplus
extern "C" {
#endif
BOOL OSDisableInterrupts(void);
void OSRestoreInterrupts(BOOL enable);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_OSINTERRUPT_H
|