1 /*********************************************************************
2 
3   cheat.h
4 
5 *********************************************************************/
6 
7 #ifndef CHEAT_H
8 #define CHEAT_H
9 
10 extern int he_did_cheat;
11 
12 void InitCheat(void);
13 void StopCheat(void);
14 
15 int cheat_menu(struct mame_bitmap *bitmap, int selection);
16 void DoCheat(struct mame_bitmap *bitmap);
17 
18 void DisplayWatches(struct mame_bitmap * bitmap);
19 
20 #endif
21