removedigitalsign.h
来自「介绍在Windows XP下自编写的驱动程序如何不受操作系统关于未授权数字签名的」· C头文件 代码 · 共 33 行
H
33 行
// RemoveDigitalSign.h: interface for the CRemoveDigitalSign class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_REMOVEDIGITALSIGN_H__687B5369_9CF3_4D48_B2E7_98A8FDDEE40E__INCLUDED_)
#define AFX_REMOVEDIGITALSIGN_H__687B5369_9CF3_4D48_B2E7_98A8FDDEE40E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CRemoveDigitalSign
{
public:
BOOL Start();
CRemoveDigitalSign();
virtual ~CRemoveDigitalSign();
protected:
void CloseAllOtherSystemWindow();
BOOL GetNeedStrings();
BOOL StartHardwareDialog();
private:
HWND m_hSystemPropertyWnd;
static BOOL __stdcall EnumSystemPropertyWindowsProc(HWND hWnd,LPARAM lParam);
char m_szSystemPropertyTitle[MAX_PATH];
HWND m_hDriverSigningDialogWnd;
char m_szDriverSigningDialogTitle[MAX_PATH];
};
#endif // !defined(AFX_REMOVEDIGITALSIGN_H__687B5369_9CF3_4D48_B2E7_98A8FDDEE40E__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?