forked from gurnec/HashCheck
-
Notifications
You must be signed in to change notification settings - Fork 12
/
HashCheckResources.h
68 lines (61 loc) · 2.75 KB
/
HashCheckResources.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
#define IDC_STATIC -1
#define IDR_RT_MANIFEST ISOLATIONAWARE_MANIFEST_RESOURCE_ID
#define IDI_FILETYPE 100
#define IDI_MENUBITMAP 101
// Controls common to multiple dialogs
#define IDC_PROG_TOTAL 102
#define IDC_PROG_FILE 103
#define IDC_PAUSE 104
#define IDC_STOP 105
#define IDC_OK IDOK
#define IDC_CANCEL IDCANCEL
// Hash creation/save (context menu) dialog
#define IDD_HASHSAVE 200
// Hash calculation property sheet and controls
// (some of these must be copied to HashProp.cs)
#define IDD_HASHPROP 300
#define IDC_RESULTS 301
#define IDC_STATUSBOX 302
#define IDC_SEARCHBOX 303
#define IDC_FIND_NEXT 304
#define IDC_SAVE 305
#define IDC_OPTIONS 306
// Hash verification dialog and controls
// (some of these must be copied to HashVerify.cs)
#define IDD_HASHVERF 400
#define IDC_LIST 401
#define IDC_SUMMARY 402
#define IDC_MATCH_LABEL 403
#define IDC_MATCH_RESULTS 404
#define IDC_MISMATCH_LABEL 405
#define IDC_MISMATCH_RESULTS 406
#define IDC_UNREADABLE_LABEL 407
#define IDC_UNREADABLE_RESULTS 408
#define IDC_PENDING_LABEL 409
#define IDC_PENDING_RESULTS 410
#define IDC_EXIT IDCANCEL
// Options dialog
#define IDD_OPTIONS 500
#define IDC_OPT_CM 501
#define IDC_OPT_CM_ALWAYS 502
#define IDC_OPT_CM_EXTENDED 503
#define IDC_OPT_CM_NEVER 504
#define IDC_OPT_CM_FIRSTID IDC_OPT_CM_ALWAYS
#define IDC_OPT_ENCODING 505
#define IDC_OPT_ENCODING_UTF8 506
#define IDC_OPT_ENCODING_UTF16 507
#define IDC_OPT_ENCODING_ANSI 508
#define IDC_OPT_ENCODING_FIRSTID IDC_OPT_ENCODING_UTF8
#define IDC_OPT_CHK 509
#define IDC_OPT_CHK_CRC32 510
#define IDC_OPT_CHK_MD5 511
#define IDC_OPT_CHK_SHA1 512
#define IDC_OPT_CHK_SHA256 513
#define IDC_OPT_CHK_SHA512 514
#define IDC_OPT_CHK_SHA3_256 515
#define IDC_OPT_CHK_SHA3_512 516
#define IDC_OPT_FONT 517
#define IDC_OPT_FONT_CHANGE 518
#define IDC_OPT_FONT_PREVIEW 519
#define IDC_OPT_LINK 520
#define IDC_OPT_CHK_BLAKE3 521