📄 configselect.h
字号:
/*+++ *******************************************************************\
*
* Copyright and Disclaimer:
*
* ---------------------------------------------------------------
* This software is provided "AS IS" without warranty of any kind,
* either expressed or implied, including but not limited to the
* implied warranties of noninfringement, merchantability and/or
* fitness for a particular purpose.
* ---------------------------------------------------------------
*
* Copyright (c) 2008 Conexant Systems, Inc.
* All rights reserved.
*
\******************************************************************* ---*/
#ifndef _CONFIG_SELET_H_
#define _CONFIG_SELET_H_
// {05EA6F6B-3B1E-4958-A68D-A37F0B6A2995}
// {5A65BCFA-D9B3-430e-BEBA-D1CC2EF00216}
static const GUID CONFIG_SET_PAGE_GUID =
{ 0x5a65bcfa, 0xd9b3, 0x430e, { 0xbe, 0xba, 0xd1, 0xcc, 0x2e, 0xf0, 0x2, 0x16 } };
class Configselect : public CBasePropertyPage
{
public:
Configselect(LPUNKNOWN lpunk, HRESULT *phr);
static CUnknown * WINAPI CreateInstance(LPUNKNOWN lpunk, HRESULT *phr);
DECLARE_IUNKNOWN;
private:
INT_PTR OnReceiveMessage(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam);
HRESULT OnConnect(IUnknown *pUnknown);
HRESULT OnDisconnect();
HRESULT OnActivate();
HRESULT OnApplyChanges();
void SetDirty();
void FillListBox();
private:
IKsPropertySet *_p_property_set; // Pointer to the property set interface
}; // class Configselect
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -