Files
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

50 lines
2.1 KiB
C++

///////////////////////////////////////////////////////////////////////////////
//
// CPLEXT.H -- defines for property sheet extensions to system control panels
//
// Version 4.00
//
// Copyright (c) 1992-1995, Microsoft Corp. All rights reserved
//
///////////////////////////////////////////////////////////////////////////////
#ifndef _INC_CPLEXT
#define _INC_CPLEXT
///////////////////////////////////////////////////////////////////////////////
// Below are constants for pages which can be replaced in the standard control
// panel applets. To extend an applet, you must define an object which
// supports the IShellPropSheetExt interface and register it's in-process
// server in a subkey under the applet's registry key. Registry paths for the
// applets are defined in the header file REGSTR.H
// Generally, when an IShellPropSheetExt is loaded, it's AddPages method
// will be called once, while it's ReplacePage method may be called zero or
// more times. ReplacePage is only called in context.
///////////////////////////////////////////////////////////////////////////////
//-----------------------------------------------------------------------------
// Mouse Control Panel Extensions
// The following constants MAY be passed in IShellPropSheetExt::ReplacePage's
// uPageID parameter for servers registered under
// ( REGSTR_PATH_CONTROLSFOLDER "\\Mouse" )
//-----------------------------------------------------------------------------
#define CPLPAGE_MOUSE_BUTTONS 1
#define CPLPAGE_MOUSE_PTRMOTION 2
//-----------------------------------------------------------------------------
// Keyboard Control Panel Extensions
// The following constants MAY be passed in IShellPropSheetExt::ReplacePage's
// uPageID parameter for servers registered under
// ( REGSTR_PATH_CONTROLSFOLDER "\\Keyboard" )
//-----------------------------------------------------------------------------
#define CPLPAGE_KEYBOARD_SPEED 1
///////////////////////////////////////////////////////////////////////////////
#endif