X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fthecheat;a=blobdiff_plain;f=cheat_types.h;fp=cheat_types.h;h=92a5622f2309980df761a41365a42a4fb776f156;hp=0000000000000000000000000000000000000000;hb=42cf7bbe564d70233a0d73baee613f209eb00eb6;hpb=2d60a59a8ad195dd0af8f90c8d5b74a69ce7f4fa diff --git a/cheat_types.h b/cheat_types.h new file mode 100644 index 0000000..92a5622 --- /dev/null +++ b/cheat_types.h @@ -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 +