mirror of
https://github.com/zeldaret/tp
synced 2026-05-25 23:35:23 -04:00
c70d485d35
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
17 lines
326 B
C
17 lines
326 B
C
#ifndef F_PC_PAUSE_
|
|
#define F_PC_PAUSE_
|
|
|
|
#include "f/f_pc/f_pc_base.h"
|
|
#include "f/f_pc/f_pc_node.h"
|
|
#include "global.h"
|
|
|
|
extern "C" {
|
|
|
|
s32 fpcPause_IsEnable(void* pProc, u8 expected);
|
|
s32 fpcPause_Enable(void* pProc, u8 pauseMask);
|
|
s32 fpcPause_Disable(void* pProc, u8 pauseMask);
|
|
void fpcPause_Init(void* pProc);
|
|
};
|
|
|
|
#endif
|