mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
17 lines
270 B
C
17 lines
270 B
C
|
|
#ifndef F_PC_PAUSE_H
|
|
#define F_PC_PAUSE_H
|
|
|
|
#include "global.h"
|
|
|
|
extern "C" {
|
|
|
|
bool fpcPause_IsEnable(void *pProcess, u8 flag);
|
|
int fpcPause_Enable(void *pProcess, u8 flag);
|
|
int fpcPause_Disable(void *pProcess, u32 flag);
|
|
void fpcPause_Init(void *pProcess);
|
|
|
|
};
|
|
|
|
#endif
|