⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exppcincs.h

📁 Windows CE程序设计随书源代码 在学习的过程中
💻 H
字号:
//======================================================================
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -