1
0
Fork 0
forked from fte/fteqw
fteqw/engine/qclib/progtype.h
Mark Olsen dee0c9d6cf Protect against multiple inclusion.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3063 fc73d0e0-1445-4013-8a0c-d673dee63da5
2008-11-14 16:48:23 +00:00

23 lines
305 B
C

#ifndef QCLIB_PROGTYPE_H
#define QCLIB_PROGTYPE_H
#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;
#endif /* QCLIB_PROGTYPE_H */