-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathresource.h
More file actions
27 lines (20 loc) · 787 Bytes
/
resource.h
File metadata and controls
27 lines (20 loc) · 787 Bytes
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
#ifndef RESOURCE_H
#define RESOURCE_H
#define ENG_LANG
#ifdef ENG_LANG
#define STR_ABOUT "Sniffer. Built 20/11/2009. Anton A. Petrov.\n"
#define STR_CANT_CREATE_SOCKET "Can't create raw socket. This program must be run under administrator!"
#define STR_SOCKET "Socket"
#define STR_HOSTNAME "Hostname"
#define STR_HOST_IP "Host IP"
#define STR_PROM_MODE "Promiscuous mode"
#define STR_CONSOLE_OUTPUT "Console output (y/n): "
#define STR_RESOLUTION "Resolution (delay in ms): "
#define STR_WATCH_HOST "Watch host: "
#define STR_NET_SERVER_STARTED "Net server on port 2000 started. Use telnet to connect.\n\n"
#define STR_END_OF_PROGRAM "Thank you for using this program.\nLog file saved.\nIP-datagrams counted:"
#endif
#else
#ifdef RUS_LANG
#endif
#endif