blob: b4508f62e310359b717f69987151a45493baa1c6 (
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(void);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_OSINTERRUPT_H
|