exppcincs.h
来自「Programming.Microsoft.Windows.CE.Dot.NET」· C头文件 代码 · 共 47 行
H
47 行
//======================================================================
// Extra Aygshell includes - This file is necessary to add back defines
// removed from the Pocket PC SDK in 2002 and 2003. These defines allow
// an application to intercept action from the New menu.
//
#ifdef __cplusplus
extern "C" {
#endif
#ifndef NMN_GETAPPREGKEY
//++++++
//
// New menu notifications
//
// get the application specific reg key for "new" menu items
#define NMN_GETAPPREGKEY 1101
// Sent to app before shared new menu is destroyed.
#define NMN_NEWMENUDESTROY 1102
// Sent to app before COM object is instantiated.
#define NMN_INVOKECOMMAND 1103
// Sent to app when new button style changes
#define NMN_NEWBUTTONUPDATED 1104
typedef struct tagNMNEWMENU
{
NMHDR hdr;
TCHAR szReg[80];
HMENU hMenu;
CLSID clsid;
} NMNEWMENU, *PNMNEWMENU;
// For application added menu items.
#define IDM_NEWMENUMAX 3000
//
// End New menu notifications
//
//------
#endif
#ifdef __cplusplus
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?