mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 07:11:06 -04:00
4e622b873f
* f_pc_pause * f_pc_priority
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
|