Game client codebase including: - CharacterActionControl: Character and creature management - GlobalScript: Network, items, skills, quests, utilities - RYLClient: Main client application with GUI and event handlers - Engine: 3D rendering engine (RYLGL) - MemoryManager: Custom memory allocation - Library: Third-party dependencies (DirectX, boost, etc.) - Tools: Development utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
91 lines
3.0 KiB
C
91 lines
3.0 KiB
C
//------------------------------------------------------------------------------
|
|
// File: resource.h
|
|
//
|
|
// Desc: DirectShow sample code - resource header file for TxtPlayer sample
|
|
//
|
|
// Copyright (c) 1994 - 2001, Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------------------------
|
|
|
|
// These are indexes used by the toolbar.
|
|
//
|
|
#define IDC_STATIC -1
|
|
|
|
#define IDX_SEPARATOR -1
|
|
#define IDX_1 0
|
|
#define IDX_2 1
|
|
#define IDX_3 2
|
|
#define IDX_4 3
|
|
#define IDX_5 4
|
|
#define IDX_6 5
|
|
#define IDX_7 6
|
|
#define IDX_8 7
|
|
#define IDX_9 8
|
|
#define IDX_10 9
|
|
#define IDX_11 10
|
|
#define IDX_12 11
|
|
|
|
#define DEFAULT_TBAR_SIZE 10
|
|
#define NUMBER_OF_BITMAPS 12
|
|
|
|
#define ID_STATUSBAR 8
|
|
#define ID_TOOLBAR 9
|
|
#define ID_TRACKBAR 10
|
|
|
|
// Dialogs
|
|
#define IDD_ABOUTBOX 200
|
|
|
|
#define IDR_MAIN_MENU 101
|
|
#define IDR_TOOLBAR 102
|
|
#define IDR_VIDEOCD_ICON 103
|
|
#define IDR_ACCELERATOR 104
|
|
|
|
#define IDM_FILE_OPEN 40001
|
|
#define IDM_FILE_CLOSE 40002
|
|
#define IDM_FILE_EXIT 40003
|
|
|
|
#define IDM_HELP_ABOUT 40102
|
|
|
|
// Different time formats
|
|
#define IDM_TIME 40150
|
|
#define IDM_FRAME 40151
|
|
#define IDM_FIELD 40152
|
|
#define IDM_SAMPLE 40153
|
|
#define IDM_BYTES 40154
|
|
|
|
// Toolbar commands
|
|
#define IDM_MOVIE_STOP 40010
|
|
#define IDM_MOVIE_PLAY 40011
|
|
#define IDM_MOVIE_PREVTRACK 40012
|
|
#define IDM_MOVIE_PAUSE 40013
|
|
#define IDM_MOVIE_SKIP_FORE 40014
|
|
#define IDM_MOVIE_SKIP_BACK 40015
|
|
#define IDM_FULL_SCREEN 40017
|
|
#define IDM_MOVIE_STEP 40019
|
|
|
|
|
|
#define MENU_STRING_BASE 1000
|
|
|
|
// File
|
|
#define STR_FILE_OPEN IDM_FILE_OPEN + MENU_STRING_BASE
|
|
#define STR_FILE_CLOSE IDM_FILE_CLOSE + MENU_STRING_BASE
|
|
#define STR_FILE_EXIT IDM_FILE_EXIT + MENU_STRING_BASE
|
|
|
|
// Help Menu HELP_MENU_BASE
|
|
#define STR_HELP_ABOUT IDM_HELP_ABOUT + MENU_STRING_BASE
|
|
|
|
// System Menu
|
|
#define STR_SYSMENU_RESTORE 1800
|
|
#define STR_SYSMENU_MOVE 1801
|
|
#define STR_SYSMENU_MINIMIZE 1802
|
|
#define STR_SYSMENU_CLOSE 1803
|
|
#define STR_SYSMENU_MAXIMIZE 1804
|
|
#define STR_SYSMENU_TASK_LIST 1805
|
|
|
|
#define STR_FILE_FILTER 2000
|
|
#define STR_APP_TITLE 2001
|
|
#define STR_APP_TITLE_LOADED 2002
|
|
|
|
|
|
#define MPEG_CODEC_BASE 4000
|
|
|