added request at26450

This commit is contained in:
Borja Ferrer
2006-03-14 16:55:06 +00:00
parent 7dae023a98
commit 9283cbe1c2
5 changed files with 232 additions and 0 deletions

52
dlls/fakemeta/glb.h Normal file
View File

@ -0,0 +1,52 @@
#ifndef _INCLUDE_GLB_H
#define _INCLUDE_GLB_H
enum glb_pointers
{
glb_start_int = 0,
trace_hitgroup,
trace_flags,
msg_entity,
cdAudioTrack,
maxClients,
maxEntities,
glb_end_int,
glb_start_float,
time,
frametime,
force_retouch,
deathmatch,
coop,
teamplay,
serverflags,
found_secrets,
trace_allsolid,
trace_startsolid,
trace_fraction,
trace_plane_dist,
trace_inopen,
trace_inwater,
glb_end_float,
glb_start_edict,
trace_ent,
glb_end_edict,
glb_start_vector,
v_forward,
v_up,
v_right,
trace_endpos,
trace_plane_normal,
vecLandmarkOffset,
glb_end_vector,
glb_start_string,
mapname,
startspot,
glb_end_string,
glb_start_pchar,
pStringBase,
glb_end_pchar
};
void initialize_glb_offsets();
#endif /* _INCLUDE_GLB_H */