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

📄 pgphotkeys.h

📁 PGP8.0源码 请认真阅读您的文件包然后写出其具体功能
💻 H
字号:
/*____________________________________________________________________________
	Copyright (C) 2002 PGP Corporation
	All rights reserved.

	pgpHotKeys.h	- 	common Windows HotKey definitions

	$Id: pgpHotKeys.h,v 1.2 2002/08/06 20:10:28 dallen Exp $
____________________________________________________________________________*/
#ifndef Included_pgpHotKeys_h	/* [ */
#define Included_pgpHotKeys_h

#include <windows.h>

#include "pgpPubTypes.h"

#define	kPGPHotKeyEnabled			0x80000000
#define kPGPHotKeyAltModifier		0x08000000
#define kPGPHotKeyCtrlModifier		0x04000000
#define kPGPHotKeyExtModifier		0x02000000
#define kPGPHotKeyShiftModifier		0x01000000

typedef struct PGPHotKeys {
	PGPUInt32	hotkeyPurgePassphraseCache;
	PGPUInt32	hotkeyEncrypt;
	PGPUInt32	hotkeySign;
	PGPUInt32	hotkeyEncryptSign;
	PGPUInt32	hotkeyDecrypt;
	PGPUInt32	hotkeyDiskUnmount;
} PGPHotKeys;

static const PGPHotKeys sDefaultHotKeys =
{
	kPGPHotKeyCtrlModifier|VK_F12,
	kPGPHotKeyCtrlModifier|kPGPHotKeyShiftModifier|'E',
	kPGPHotKeyCtrlModifier|kPGPHotKeyShiftModifier|'S',
	kPGPHotKeyCtrlModifier|kPGPHotKeyShiftModifier|'C',
	kPGPHotKeyCtrlModifier|kPGPHotKeyShiftModifier|'D',
	kPGPHotKeyCtrlModifier|kPGPHotKeyShiftModifier|'U'
};

#endif /* ] Included_pgpHotKeys_h */

⌨️ 快捷键说明

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