-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
141 additions
and
110 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#![allow(dead_code)] | ||
#![allow(non_upper_case_globals)] | ||
|
||
pub const IDC_MYICON: isize = 2; | ||
pub const IDD_CHARLESMINE_DIALOG: isize = 102; | ||
pub const IDS_APP_TITLE: isize = 103; | ||
pub const IDI_CHARLESMINE: isize = 107; | ||
pub const IDC_CHARLESMINE: isize = 109; | ||
pub const IDC_TEXT1: isize = 112; | ||
pub const IDC_TEXT2: isize = 113; | ||
pub const IDC_TEXT3: isize = 114; | ||
pub const IDC_TEXT4: isize = 115; | ||
pub const IDC_EDIT1: isize = 116; | ||
pub const IDC_EDIT2: isize = 117; | ||
pub const IDC_EDIT3: isize = 118; | ||
pub const IDC_EDIT4: isize = 119; | ||
pub const IDC_BUTTON1: isize = 120; | ||
pub const IDC_BUTTON2: isize = 121; | ||
pub const IDC_EXTRA1: isize = 122; | ||
pub const IDC_EXTRA2: isize = 123; | ||
pub const IDC_EXTRA3: isize = 124; | ||
pub const IDR_MAINFRAME: isize = 128; | ||
pub const IDB_BLOCKS: isize = 129; | ||
pub const IDB_BUTTON: isize = 130; | ||
pub const IDB_DIGIT: isize = 131; | ||
pub const IDM_FILE_NEW: isize = 151; | ||
pub const IDM_FILE_GAME_EASY: isize = 152; | ||
pub const IDM_FILE_GAME_MEDIUM: isize = 153; | ||
pub const IDM_FILE_GAME_HARD: isize = 154; | ||
pub const IDM_FILE_GAME_CUSTOM: isize = 155; | ||
pub const IDM_FILE_MARK: isize = 156; | ||
pub const IDM_FILE_HERO_LIST: isize = 157; | ||
pub const IDM_FILE_EXIT: isize = 158; | ||
pub const IDM_ADVANCED_LOADMAP: isize = 161; | ||
pub const IDM_ADVANCED_SAVEMAP: isize = 162; | ||
pub const IDM_ADVANCED_RESTART: isize = 163; | ||
pub const IDM_ADVANCED_RECORD_RECORD: isize = 164; | ||
pub const IDM_ADVANCED_RECORD_PLAY: isize = 166; | ||
pub const IDM_ADVANCED_RECORD_STOP: isize = 167; | ||
pub const IDM_ADVANCED_ZOOM_1x: isize = 170; | ||
pub const IDM_ADVANCED_ZOOM_2x: isize = 171; | ||
pub const IDM_ADVANCED_ZOOM_3x: isize = 172; | ||
pub const IDM_HELP_ABOUT: isize = 199; | ||
pub const IDD_ABOUTBOX: isize = 201; | ||
pub const IDD_CUSTOM_GAME: isize = 202; | ||
pub const IDD_HERO_NAME: isize = 203; | ||
pub const IDD_HERO_LIST: isize = 204; | ||
pub const IDS_ABOUTTEXT: isize = 241; | ||
pub const IDS_ABOUTTEXT1: isize = 242; | ||
pub const IDS_ABOUTTEXT2: isize = 243; | ||
pub const IDS_ABOUTTEXT3: isize = 244; | ||
pub const IDS_CUSTOMGAME: isize = 251; | ||
pub const IDS_CUSTOMGAME_HEIGHT: isize = 252; | ||
pub const IDS_CUSTOMGAME_WIDTH: isize = 253; | ||
pub const IDS_CUSTOMGAME_MINE: isize = 254; | ||
pub const IDS_HERO_NAME: isize = 261; | ||
pub const IDS_HERO_NAME_TEXT1: isize = 262; | ||
pub const IDS_HERO_NAME_TEXT2: isize = 263; | ||
pub const IDS_HERO_NAME_TEXT3: isize = 264; | ||
pub const IDS_HERO_LIST: isize = 271; | ||
pub const IDS_HERO_LIST_TEXT1: isize = 272; | ||
pub const IDS_HERO_LIST_TEXT2: isize = 273; | ||
pub const IDS_HERO_LIST_TEXT3: isize = 274; | ||
pub const IDS_HERO_LIST_BUTTON: isize = 275; | ||
pub const IDS_FILE_FILTER: isize = 281; | ||
pub const IDS_REPLAY_FILTER: isize = 282; | ||
pub const IDS_FILE_SAVE_ERROR: isize = 283; | ||
pub const IDS_FILE_LOAD_ERROR: isize = 284; | ||
pub const IDS_FILE_RECORD_FINISH: isize = 285; | ||
pub const IDS_FILE_PLAYBACK_FINISH: isize = 286; | ||
pub const IDS_APP_TITLE_RECORD: isize = 287; | ||
pub const IDS_FILE_RECORD_START: isize = 288; | ||
pub const IDS_FILE_RECORD_RESTART: isize = 289; | ||
pub const IDC_STATIC: isize = -1; |