pgphotkeys.h
来自「PGP8.0源码 请认真阅读您的文件包然后写出其具体功能」· C头文件 代码 · 共 42 行
H
42 行
/*____________________________________________________________________________
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 + =
减小字号Ctrl + -
显示快捷键?