pgpver.h
来自「可以实现对邮件的加密解密以及签名」· C头文件 代码 · 共 39 行
H
39 行
/*____________________________________________________________________________
Copyright (C) 2002 PGP Corporation
All rights reserved.
PGPver.h - PGP company-specific version information
$Id: pgpVer.h,v 1.4 2002/11/21 18:42:55 wjb Exp $
____________________________________________________________________________*/
#define VER_COMPANYNAME_STR "PGP Corporation\0"
#define VER_LEGALTRADEMARKS_STR \
"PGP is a trademark of PGP Corporation\0"
#define VER_LEGALCOPYRIGHT_YEARS "2000\0"
#define VER_LEGALCOPYRIGHT_STR \
"Copyright (C) 2002 PGP Corporation
/* default is nodebug */
#if PGP_DEBUG
#define VER_DEBUG VS_FF_DEBUG
#else
#define VER_DEBUG 0
#endif
/* default is release */
#if BETA
#define VER_PRERELEASE VS_FF_PRERELEASE
#else
#define VER_PRERELEASE 0
#endif
#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#define VER_FILEFLAGS (VER_PRERELEASE | VER_DEBUG)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?