mirror of
https://github.com/pret/pokerevo.git
synced 2026-09-10 18:07:24 -05:00
16 lines
251 B
C
16 lines
251 B
C
#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
|