forked from necr0potenc3/UOLog_1.2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.h
44 lines (37 loc) · 759 Bytes
/
globals.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef _GLOBALS_H_
#define _GLOBALS_H_
typedef struct tagFrequency
{
unsigned long bytecount;
unsigned long count;
}Frequency;
typedef struct tagDebugLoopParam
{
DWORD TargetPID;
int attached;
char *path;
}DebugLoopParam;
typedef struct tagClientEntry
{
char Version[50];
void *Send, *Recv;
short RegBufSend, RegLenSend, RegBufRecv, RegLenRecv;
}ClientEntry;
typedef struct tagGlobalOptions
{
HWND hWnd;
LogWindow *PacketLog;
HMENU MainMenu;
int FilterMode;
int FilterType;
int AutoScroll;
int FileLogging;
int WindowLogging;
int RawLogging;
char Filter[500];
}GlobalOptions;
extern GlobalOptions Options;
extern ClientEntry Client;
extern Frequency freqs[255][2];
extern int minutecounter;
#endif