File: progtype.h

package info (click to toggle)
fteqcc 3343%2Bsvn3400-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,164 kB
  • sloc: ansic: 56,690; makefile: 75; sh: 6
file content (23 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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 */