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>
81 lines
2.3 KiB
Plaintext
81 lines
2.3 KiB
Plaintext
//==========================================================================;
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
|
|
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
|
|
// PURPOSE.
|
|
//
|
|
// Copyright (c) 1998-2001 Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
//--------------------------------------------------------------------------;
|
|
//
|
|
// Resource file for DirectShow video texture sample
|
|
//
|
|
|
|
|
|
#include <windows.h>
|
|
#include "resource.h"
|
|
|
|
IDI_TEXTURES ICON directx.ico
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Dialog
|
|
//
|
|
|
|
IDD_ABOUTBOX DIALOG DISCARDABLE 0, 0, 235, 55
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "About Texture3D"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
ICON IDI_TEXTURES,-1,11,17,20,20
|
|
LTEXT "DirectShow Texture3D Sample",-1,40,10,131,8,SS_NOPREFIX
|
|
LTEXT "Copyright (C) 1999-2001 Microsoft Corporation",-1,40,34,
|
|
188,8
|
|
DEFPUSHBUTTON "OK",IDOK,178,7,50,14,WS_GROUP
|
|
LTEXT "Version 8.1",-1,40,22,119,8,SS_NOPREFIX
|
|
END
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION 8,1,0,0
|
|
PRODUCTVERSION 8,1,0,0
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS 0x4L
|
|
FILETYPE 0x1L
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "Comments", "DirectShow Sample\0"
|
|
VALUE "CompanyName", "Microsoft\0"
|
|
VALUE "FileDescription", "Texture3D Application\0"
|
|
VALUE "FileVersion", "8.10\0"
|
|
VALUE "InternalName", "Texture3D\0"
|
|
VALUE "LegalCopyright", "Copyright (c) 2000-2001 Microsoft Corporation\0"
|
|
VALUE "LegalTrademarks", "\0"
|
|
VALUE "OriginalFilename", "Texture3D.EXE\0"
|
|
VALUE "PrivateBuild", "\0"
|
|
VALUE "ProductName", "DirectX 8 SDK\0"
|
|
VALUE "ProductVersion", "8.1\0"
|
|
VALUE "SpecialBuild", "\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|