Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Cplext.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 3k
Category:
Game Server Simulator
Development Platform:
C/C++
- ///////////////////////////////////////////////////////////////////////////////
- //
- // CPLEXT.H -- defines for property sheet extensions to system control panels
- //
- // Version 4.00
- //
- // Copyright (c) Microsoft Corporation. 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
- #define CPLPAGE_MOUSE_WHEEL 3
- //-----------------------------------------------------------------------------
- // 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
- //-----------------------------------------------------------------------------
- // Display Control Panel Extensions
- // The following constants MAY be passed in IShellPropSheetExt::ReplacePage's
- // uPageID parameter for servers registered under
- // ( REGSTR_PATH_CONTROLSFOLDER "\Display" )
- //-----------------------------------------------------------------------------
- #define CPLPAGE_DISPLAY_BACKGROUND 1
- ///////////////////////////////////////////////////////////////////////////////
- #endif