📄 pgpbuildflags.h
字号:
/*_____________________________________________________________________________
Copyright (C) 1997 Network Associates Inc. and affiliated companies.
All rights reserved.
$Id: pgpBuildFlags.h,v 1.110.12.1 1999/07/08 21:35:24 heller Exp $
_____________________________________________________________________________*/
#ifndef Included_pgpBuildFlags_h /* [ */
#define Included_pgpBuildFlags_h
/*_____________________________________________________________________________
This is the common header file for the PGP client. It contains flags
that apply globally to all modules. Before building, make sure the flags
here are set appropriately.
Note: include this file in your project prefix
_____________________________________________________________________________*/
#ifndef BETA
#define BETA 0 // zero for release
#endif
#ifndef PGP_DEMO
#define PGP_DEMO 0 // zero for regular version
#endif
#ifndef PGP_FREEWARE
#define PGP_FREEWARE 0 // zero for non-freeware
#endif
#ifndef PGP_BUSINESS_SECURITY
#define PGP_BUSINESS_SECURITY 1 // zero for personal version
#endif
#ifndef PGP_PERSONAL_PRIVACY
#define PGP_PERSONAL_PRIVACY 0 // zero for business version
#endif
#ifndef NO_RSA_KEYGEN
#define NO_RSA_KEYGEN 0
#endif
#ifndef NO_RSA_OPERATIONS
#define NO_RSA_OPERATIONS 0
#endif
#ifndef CREDIT_RSA_BSAFE
#define CREDIT_RSA_BSAFE 0
#endif
#ifndef PGPNET_ALLOW_DES56
#if 0
#define PGPNET_ALLOW_DES56 1
#else
#define PGPNET_ALLOW_DES56 0
#endif
#endif
#if PGP_BUSINESS_SECURITY
#if PGP_PERSONAL_PRIVACY || PGP_FREEWARE
#error This is not a legal build combination
#endif
#elif PGP_PERSONAL_PRIVACY
#if PGP_BUSINESS_SECURITY || PGP_FREEWARE
#error This is not a legal build combination
#endif
#elif PGP_FREEWARE
#if PGP_BUSINESS_SECURITY || PGP_PERSONAL_PRIVACY
#error This is not a legal build combination
#endif
#else
#error Must define a primary build type!
#endif
#endif /* ] Included_pgpBuildFlags_h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -