crypt32.rc

来自「提供了很多种加密算法和CA认证及相关服务如CMP、OCSP等的开发」· RC 代码 · 共 50 行

RC
50
字号
/* cryptlib resource file.  We provide a slightly different version depending on
   whether it's a debug or release build because some Windows users complained
   about the fact that the code indicated a version of "beta n".  Shipping them
   exactly the same code renamed to "SPn" fixed the problem, but not indicating a
   subversion at all prevents this problem from even appearing */

#include <winver.h>

VS_VERSION_INFO		VERSIONINFO
#ifdef _DEBUG
  FILEVERSION		3,0,7,0
  PRODUCTVERSION	3,0,7,0
#else
  FILEVERSION		3,0,0,0
  PRODUCTVERSION	3,0,0,0
#endif
FILEFLAGSMASK		VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG
  FILEFLAGS			VS_FF_DEBUG | VS_FF_PRIVATEBUILD | VS_FF_PRERELEASE
#else
  FILEFLAGS			0
#endif
FILEOS				VOS_NT
FILETYPE			VFT_DLL
FILESUBTYPE			VFT2_UNKNOWN
BEGIN
  BLOCK "VarFileInfo"
  BEGIN
	VALUE "Translation", 0x0409, 1252	; US English, Windoze charset
  END

  BLOCK "StringFileInfo"
  BEGIN
	BLOCK "040904E4"					; US English, Windoze charset data
	BEGIN
	  VALUE "FileDescription", "cryptlib security toolkit.\0"
	  VALUE "ProductName", "cryptlib security toolkit.\0"
	  VALUE "CompanyName", "Peter Gutmann.\0"
	  VALUE "LegalCopyright", "Copyright \251 1994 - 2002 Peter Gutmann, Eric Young.\0"
#ifdef _DEBUG
	  VALUE "FileVersion", "3.0 final beta\0"
	  VALUE "ProductVersion", "3.0 final beta\0"
#else
	  VALUE "FileVersion", "3.0.0\0"
	  VALUE "ProductVersion", "3.0.0\0"
#endif
	END
  END
END

⌨️ 快捷键说明

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