1 #ifndef RESOURCE_H
2 #define RESOURCE_H
3 
4 #define IDS_USAGE   0
5 
6 #define IDS_QUERY_SERIAL_FOUND      1
7 #define IDS_QUERY_PRINTER_FOUND     2
8 #define IDS_QUERY_PARALLEL_FOUND    3
9 // #define IDS_QUERY_MISC_FOUND        4
10 #define IDS_QUERY_DOSDEV_FOUND      4
11 // #define IDS_QUERY_DEVICE_FOUND      1
12 // #define IDS_SERIAL                  2
13 // #define IDS_PRINTER                 3
14 // #define IDS_OTHER                   4
15 
16 #define IDS_DEVICE_STATUS_HEADER            5
17 #define IDS_COM_STATUS_BAUD                 6
18 #define IDS_COM_STATUS_PARITY               7
19 #define IDS_COM_STATUS_DATA_BITS            8
20 #define IDS_COM_STATUS_STOP_BITS            9
21 #define IDS_COM_STATUS_TIMEOUT              10
22 #define IDS_COM_STATUS_XON_XOFF             11
23 #define IDS_COM_STATUS_CTS_HANDSHAKING      12
24 #define IDS_COM_STATUS_DSR_HANDSHAKING      13
25 #define IDS_COM_STATUS_DSR_SENSITIVITY      14
26 #define IDS_COM_STATUS_DTR_CIRCUIT          15
27 #define IDS_COM_STATUS_RTS_CIRCUIT          16
28 #define IDS_CONSOLE_STATUS_LINES            17
29 #define IDS_CONSOLE_STATUS_COLS             18
30 #define IDS_CONSOLE_KBD_RATE                19
31 #define IDS_CONSOLE_KBD_DELAY               20
32 #define IDS_CONSOLE_CODEPAGE                21
33 #define IDS_PRINTER_OUTPUT_NOT_REROUTED     22
34 #define IDS_PRINTER_OUTPUT_REROUTED_SERIAL  23
35 
36 #define IDS_ERROR_QUERY_DEVICES         24
37 #define IDS_ERROR_QUERY_DEVICES_FORM    25
38 #define IDS_ERROR_SET_PARALLEL_STATE    26
39 #define IDS_ERROR_INVALID_PARAMETER     27
40 #define IDS_ERROR_ILLEGAL_DEVICE_NAME   28
41 #define IDS_ERROR_DEVICE_NOT_AVAILABLE  29
42 #define IDS_ERROR_STATUS_GET_DEVICE     30
43 #define IDS_ERROR_STATUS_SET_DEVICE     31
44 #define IDS_ERROR_TIMEOUT_GET_DEVICE    32
45 #define IDS_ERROR_TIMEOUT_SET_DEVICE    33
46 #define IDS_ERROR_INVALID_PARITY_BITS   34
47 #define IDS_ERROR_INVALID_STOP_BITS     35
48 #define IDS_ERROR_NO_MEMORY             36
49 #define IDS_ERROR_SCREEN_LINES_COL      37
50 #define IDS_ERROR_INVALID_CODEPAGE      38
51 
52 #endif /* RESOURCE_H */
53