/me whistles.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@865 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-02-02 08:21:44 +00:00
parent 8adc3aafcc
commit 28a382a197
1 changed files with 19 additions and 18 deletions

View File

@ -21,6 +21,7 @@ enum{false, true};
#ifndef __declspec #ifndef __declspec
#define __declspec(mode) #define __declspec(mode)
#endif #endif
typedef enum{false, true} boolean; typedef enum{false, true} boolean;
//#define _inline inline //#define _inline inline
#endif #endif
@ -300,7 +301,7 @@ eval_t *GetEdictFieldValue(progfuncs_t *progfuncs, struct edict_s *ed, char *nam
//this is windows - all files are written with this endian standard //this is windows - all files are written with this endian standard
//optimisation //optimisation
//leave undefined if in doubt over os. //leave undefined if in doubt over os.
#ifndef WIN32 #ifdef _WIN32
#define NOENDIAN #define NOENDIAN
#endif #endif