📄 downloadercb.h
字号:
#ifndef DOWNLOADERCB_H
#define DOWNLOADERCB_H
// These are the wrappers for the static member function SetBootCB
// in the EthDl.dll library (SetBootCB takes atmost one function CB).
// These wrappers will maintain a list of CB functions and whenever
// EthDl calls into this library, all those callback functions are
// called in-turn
#ifdef __cplusplus
extern "C" {
#endif
BOOL RegisterCB(PFN_BootCB pfnCB, LPVOID pUserData);
BOOL DeRegisterCB(PFN_BootCB pfnCB, LPVOID pUserData);
BOOL LoadCB(LPCWSTR pszDllName);
BOOL UnloadCB();
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -