mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2.googlecode.com/svn/branches/pcsx2_0.9.2@159 96395faa-99c1-11dd-bbfe-3dabce05a288
19 lines
376 B
C
19 lines
376 B
C
#ifndef CHEATS_H_INCLUDED
|
|
#define CHEATS_H_INCLUDED
|
|
|
|
#ifndef __cplusplus
|
|
typedef enum ebool
|
|
{
|
|
false,
|
|
true
|
|
} bool;
|
|
#endif
|
|
|
|
extern HINSTANCE pInstance;
|
|
extern bool FirstShow;
|
|
|
|
void AddCheat(HINSTANCE hInstance, HWND hParent);
|
|
void ShowFinder(HINSTANCE hInstance, HWND hParent);
|
|
void ShowCheats(HINSTANCE hInstance, HWND hParent);
|
|
|
|
#endif//CHEATS_H_INCLUDED
|