Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// SlbCsp.rc2 - resources for SLB CSP which Microsoft Visual C++ does // not edit directly. // // (c) Copyright Schlumberger Technology Corp., unpublished work, created // 1999. This computer program includes Confidential, Proprietary // Information and is a Trade Secret of Schlumberger Technology Corp. All // use, disclosure, and/or reproduction is prohibited unless authorized // in writing. All Rights Reserved.
#ifndef APSTUDIO_INVOKED
///////////////////////////////////////////////////////////////////////////// // Add manually edited resources here...
// If SLB_BUILD is defined, then assume Schlumberger is doing the // build, in which case the major, minor and build numbers should be // defined. Otherwise, it is assumed Microsoft is doing the build on // Windows 2000 and defines the version numbers elsewhere. #if defined(SLB_BUILD) #define VER_PRODUCT_MAJOR 6 #define VER_PRODUCT_MINOR 2
// This SCCP uses the major and minor version of the DLL as the // version of this provider when returning from CPGetProvParam in // csp_api.c. The definition of CryptGetProvParam for the PP_VERSION // doesn't allow for major or minor versions greater than 255. #if (VER_PRODUCT_MINOR > 255) #error The minor version number is too large. Start a new major release. #endif
#if (VER_PRODUCT_MAJOR > 255) #error The major version number is too large. #endif
#include "AutoBuildCount.h" #define SLBSCU_BUILDCOUNT_NUM BUILDCOUNT_NUM #endif
#define VER_INTERNALNAME_STR "slbCsp.dll" #define VER_FILETYPE VFT_DLL #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Schlumberger Smart Card CryptoAPI Library"
#define SLBSCU_ROOT_PRODUCTNAME_STR "Schlumberger Smart Card Cryptographic Service Provider"
#define VER_LEGALCOPYRIGHT_YEARS "1997-2000"
#include <scuRcVersion.h> #include <common.ver> /////////////////////////////////////////////////////////////////////////////
#endif //APSTUDIO_INVOKED
|