]> Dogcows Code - chaz/thecheat/blobdiff - cheat_types.h
The Cheat 1.0b3
[chaz/thecheat] / cheat_types.h
diff --git a/cheat_types.h b/cheat_types.h
new file mode 100644 (file)
index 0000000..92a5622
--- /dev/null
@@ -0,0 +1,40 @@
+
+// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+// Project:   The Cheat
+//
+// File:      cheat_types.h
+// Created:   Thu Sep 11 2003
+//
+// Copyright: 2003 Chaz McGarvey.  All rights reserved.
+// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+#ifndef _cheat_types_H
+#define _cheat_types_H
+
+
+enum tagTCtype
+{
+       TYPE_INTEGER, TYPE_STRING, TYPE_DECIMAL, TYPE_UNKNOWN
+};
+typedef int                    TCtype;
+
+enum tagTCsize
+{
+       SIZE_8_BIT, SIZE_16_BIT, SIZE_32_BIT, SIZE_64_BIT
+};
+typedef int                    TCsize;
+
+enum tagTCstatus
+{
+       STATUS_DISCONNECTED, STATUS_CONNECTED, STATUS_CHEATING, STATUS_SEARCHING, STATUS_CHANGING, STATUS_CHANGING_LATER, STATUS_CHANGING_CONTINUOUSLY, STATUS_UNDOING, STATUS_REDOING
+};
+typedef int                    TCstatus;
+// NOTE: STATUS_CHANGING_LATER should not be used, as this future is not implemented.
+
+
+typedef long unsigned          TCaddress;
+#define                                                TCAddressSize sizeof(TCaddress)
+
+
+#endif
+
This page took 0.016574 seconds and 4 git commands to generate.