-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.h
87 lines (71 loc) · 2.82 KB
/
resource.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#ifndef IDC_STATIC
#define IDC_STATIC (-1)
#endif
#define DLG_MAIN 100
#define ID_CIPHERS_GROUPBOX 200
#define ID_CIPHERS_DLGXOR_BUTTON 201
#define ID_CIPHERS_DLGROT13_BUTTON 202
#define ID_CIPHERS_DLGB64_BUTTON 203
#define ID_CIPHERS_CAESAR_BUTTON 204
#define ID_CIPHERS_VIGENERE_BUTTON 205
#define ID_CIPHERS_SAVEVIGE_BUTTON 206
#define ID_OTHERS_GROUPBOX 250
#define ID_OTHERS_HASHES_BUTTON 251
#define ID_OTHERS_SVB64_BUTTON 252
#define DLG_XOR 101
#define DLG_ROT13 102
#define DLG_B64 103
#define DLG_CAESAR 104
#define DLG_VIGENERE 105
#define DLG_SAFEVIGE 106
#define DLG_HASHES 151
#define DLG_SVB64 152
#define ID_XOR_GROUPBOX 300
#define ID_XOR_APPLY_PUSHBUTTON 310
#define ID_XOR_KEY_LABEL 320
#define ID_XOR_KEY_LINE 321
#define ID_XOR_INPUT_TEXT 330
#define ID_XOR_OUTPUT_TEXT 340
#define ID_ROT13_GROUPBOX 400
#define ID_ROT13_APPLY_PUSHBUTTON 410
#define ID_ROT13_INPUT_TEXT 430
#define ID_ROT13_OUTPUT_TEXT 440
#define ID_BASE64_GROUPBOX 500
#define ID_BASE64_ENCODE_BUTTON 510
#define ID_BASE64_DECODE_BUTTON 511
#define ID_BASE64_INPUT_TEXT 530
#define ID_BASE64_OUTPUT_TEXT 540
#define ID_CAESAR_GROUPBOX 600
#define ID_CAESAR_ENCRYPT_BUTTON 610
#define ID_CAESAR_DECRYPT_BUTTON 611
#define ID_CAESAR_KEY_LABEL 620
#define ID_CAESAR_KEY_LINE 621
#define ID_CAESAR_INPUT_TEXT 630
#define ID_CAESAR_OUTPUT_TEXT 640
#define ID_VIGENERE_GROUPBOX 700
#define ID_VIGENERE_ENCRYPT_BUTTON 710
#define ID_VIGENERE_DECRYPT_BUTTON 711
#define ID_VIGENERE_KEY_LABEL 720
#define ID_VIGENERE_KEY_LINE 721
#define ID_VIGENERE_INPUT_TEXT 730
#define ID_VIGENERE_OUTPUT_TEXT 740
#define ID_VIGENERE_ALPHABET_CHECK 750
#define ID_SAFEVIGE_GROUPBOX 800
#define ID_SAFEVIGE_ENCRYPT_BUTTON 810
#define ID_SAFEVIGE_DECRYPT_BUTTON 811
#define ID_SAFEVIGE_KEY_LABEL 820
#define ID_SAFEVIGE_KEY_LINE 821
#define ID_SAFEVIGE_INPUT_TEXT 830
#define ID_SAFEVIGE_OUTPUT_TEXT 840
#define ID_SAFEVIGE_LONGKEY_TEXT 860
#define ID_HASHES_GROUPBOX 5100
#define ID_HASHES_COMBOBOX 5120
#define ID_HASHES_INPUT_TEXT 5130
#define ID_HASHES_OUTPUT_TEXT 5140
#define ID_SVB64_GROUPBOX 5200
#define ID_SVB64_ENCRYPT_BUTTON 5210
#define ID_SVB64_DECRYPT_BUTTON 5211
#define ID_SVB64_KEY_LABEL 5220
#define ID_SVB64_KEY_LINE 5221
#define ID_SVB64_INPUT_TEXT 5230
#define ID_SVB64_OUTPUT_TEXT 5240