📄 setupinf.h
字号:
#ifndef _SETUPINF_H_
#define _SETUPINF_H_
#include "Setupapi.h"
#define ID_INSTALL 200
//
// typedefs
//
typedef struct tagINSTALLINFO
{
HINSTANCE hInst; // current instance
HINF hInf;
HSPFILEQ FileQueue;
} INSTALLINFO;
//
// Context for data needed in my callback routine
// This needs to include the context for the default callback
// since my callback calls the default
//
typedef struct tagMY_INSTALL_DATA{
// TODO: Add other data here that you want to have
// available to your callback function.
// For example, you may keep a counter that indicates
// your bill board if you are doing your own progress dialog
PVOID pDefaultContext;
HWND hProgress;
} MY_INSTALL_DATA;
#define INF_OPTION1 TEXT("ProductInstall")
#endif // _SETUPINF_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -