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