shhelper.h

来自「大量windows shell编程例子」· C头文件 代码 · 共 38 行

H
38
字号
/*****************************************************************
*
*  Application.:  SHHELPER.dll
*  Module......:  SHHelper.cpp
*  Description.:  Library header
*  Compiler....:  MS Visual C++
*  Written by..:  D. Esposito
*
*******************************/

/*---------------------------------------------------------------*/
//                     INCLUDE section
/*---------------------------------------------------------------*/
#define WIN32_LEAN_AND_MEAN
#define STRICT

#include <windows.h>
#include <windowsx.h>

/*---------------------------------------------------------------*/
//                     INCLUDE section
/*---------------------------------------------------------------*/
extern HINSTANCE g_hThisDll;


/*---------------------------------------------------------------*/
//                     PROTOTYPES section
/*---------------------------------------------------------------*/

int SHBrowseForIcon(LPTSTR szFile, HICON* lphIcon);
BOOL CALLBACK BrowseIconProc(HWND, UINT, WPARAM, LPARAM);
void OnInitDialog(HWND);
void OnBrowse(HWND);
int DoLoadIcons(HWND, LPTSTR);
void DoGetIcon(HWND);

/*  End of file: SHHelper.h  */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?