]> Dogcows Code - chaz/thecheat/blobdiff - Variable.h
The Cheat 1.2.5
[chaz/thecheat] / Variable.h
index 57c8e67cb7f4b1303a281a06b0a457b84db393f2..67f5e080054363883b8d522475ad1fb0c7e2b46a 100644 (file)
@@ -1,22 +1,13 @@
 
-// **********************************************************************
-// The Cheat - A universal game cheater for Mac OS X
-// (C) 2003-2005 Chaz McGarvey (BrokenZipper)
-// 
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 1, or (at your option)
-// any later version.
-// 
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
-// 
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-// 
+/*
+ * The Cheat - The legendary universal game trainer for Mac OS X.
+ * http://www.dogcows.com/chaz/wiki/TheCheat
+ *
+ * Copyright (c) 2003-2010, Charles McGarvey et al.
+ *
+ * Distributable under the terms and conditions of the 2-clause BSD
+ * license; see the file COPYING for the legal text of the license.
+ */
 
 #import <Cocoa/Cocoa.h>
 
        BOOL _isValueValid;
        BOOL _enabled;
        
+#if MAC_OS_X_VERSION_10_5 <= MAC_OS_X_VERSION_MAX_ALLOWED
+       NSInteger _tag;
+#else
        int _tag;
-       
+#endif
+
        Process *process;
        
        @public;
        // do not change these variables directly or things will be screwed.
        TCVariableType _type;
        TCIntegerSign _integerSign;
-       unsigned _size;
+#if MAC_OS_X_VERSION_10_5 <= MAC_OS_X_VERSION_MAX_ALLOWED
+       NSUInteger _size;
+#else
+       unsigned int _size;
+#endif
        void *_value;
        BOOL _isEmulated;
 }
@@ -97,7 +96,12 @@ void bigEndianValue(void *buffer, Variable *variable);
 - (BOOL)isEnabled;
 - (void)setEnabled:(BOOL)enabled;
 
+#if MAC_OS_X_VERSION_10_5 <= MAC_OS_X_VERSION_MAX_ALLOWED
+- (NSInteger)tag;
+- (void)setTag:(NSInteger)tag;
+#else
 - (int)tag;
 - (void)setTag:(int)tag;
+#endif
 
 @end
This page took 0.01915 seconds and 4 git commands to generate.