fteqw/engine/qclib/progtype.h
Spoike 7c418ca423 qc string_t is now an int instead of char *, stringtable is char * instead of int.
Some fixes and extra stuff for nexuiz, but it took a protocol extension, which is currently assumed instead of queried.


git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1015 fc73d0e0-1445-4013-8a0c-d673dee63da5
2005-05-15 18:49:04 +00:00

18 lines
223 B
C

#ifndef DLL_PROG
#else
typedef float vec_t;
typedef vec_t vec3_t[3];
#endif
#ifndef t_bool
#define t_bool
typedef int pbool;
#else
#define t_bool
#endif
typedef int progsnum_t;
typedef int func_t;
typedef int string_t;