]> Dogcows Code - chaz/thecheat/blob - cheat_types.h
The Cheat 1.1.1
[chaz/thecheat] / cheat_types.h
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: cheat_types.h
6 // Created: Thu Sep 11 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #ifndef _cheat_types_H
12 #define _cheat_types_H
13
14
15 enum tagTCtype
16 {
17 TYPE_INTEGER, TYPE_STRING, TYPE_DECIMAL, TYPE_UNKNOWN
18 };
19 typedef int TCtype;
20
21 enum tagTCsize
22 {
23 SIZE_8_BIT, SIZE_16_BIT, SIZE_32_BIT, SIZE_64_BIT
24 };
25 typedef int TCsize;
26
27 enum tagTCstatus
28 {
29 STATUS_DISCONNECTED, STATUS_CONNECTED, STATUS_CHEATING, STATUS_SEARCHING, STATUS_CHANGING, STATUS_CHANGING_LATER, STATUS_CHANGING_CONTINUOUSLY, STATUS_UNDOING, STATUS_REDOING
30 };
31 typedef int TCstatus;
32 // NOTE: STATUS_CHANGING_LATER should not be used, as this future is not implemented.
33
34
35 typedef long unsigned TCaddress;
36 #define TCAddressSize sizeof(TCaddress)
37
38
39 #endif
40
This page took 0.029206 seconds and 4 git commands to generate.