MGF Server  2.1
Multigaze framework server
 All Classes Functions
logrecordtypes.h
1 #pragma once
2 
3 #ifndef LOG_RECORD_TYPES_H
4 #define LOG_RECORD_TYPES_H
5 
9 typedef enum _gdLogRecordType
10 {
11  LRT_UNDEFINED = 0x000,
12  LRT_GAZEDATA = 0x001,
13  LRT_MESSAGE = 0x002,
14  LRT_REGCLIENT = 0x003,
15  LRT_UNREGCLIENT = 0x004,
16  LRT_POKECLIENT = 0x005,
17  LRT_STARTTRACK = 0x006,
18  LRT_SETNICKNAME = 0x007,
19  LRT_SETDESCRIPT = 0x008
20 } gdLogRecordType;
21 
22 #endif
23 
24 
25 
26