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