diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2004-08-11 07:51:56 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2004-08-11 07:51:56 +0000 |
commit | c31c2194f386813bfe039c5e52eb8f963aea7d83 (patch) | |
tree | 1c1d0734cc3a944e35262afd039a583a2ff4aa51 /winsup/w32api/include | |
parent | dbe6474a4abf44b7793d11caf617e33cb9c39f6f (diff) | |
download | cygnal-c31c2194f386813bfe039c5e52eb8f963aea7d83.tar.gz cygnal-c31c2194f386813bfe039c5e52eb8f963aea7d83.tar.bz2 cygnal-c31c2194f386813bfe039c5e52eb8f963aea7d83.zip |
* include/wincrypt.h: Correct _WIN32_WINNT typo.
Diffstat (limited to 'winsup/w32api/include')
-rw-r--r-- | winsup/w32api/include/wincrypt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/w32api/include/wincrypt.h b/winsup/w32api/include/wincrypt.h index d4f839509..5e893df14 100644 --- a/winsup/w32api/include/wincrypt.h +++ b/winsup/w32api/include/wincrypt.h @@ -27,10 +27,10 @@ extern "C" { #define MS_DEF_DH_SCHANNEL_PROV_W L"Microsoft DH SChannel Cryptographic Provider" #define MS_SCARD_PROV_A "Microsoft Base Smart Card Crypto Provider" #define MS_SCARD_PROV_W L"Microsoft Base Smart Card Crypto Provider" -#if (WIN32_WINNT == 0x0501) +#if (_WIN32_WINNT == 0x0501) #define MS_ENH_RSA_AES_PROV_A "Microsoft Enhanced RSA and AES Cryptographic Provider (Prototype)" #define MS_ENH_RSA_AES_PROV_W L"Microsoft Enhanced RSA and AES Cryptographic Provider (Prototype)" -#elif (WIN32_WINNT > 0x0501) +#elif (_WIN32_WINNT > 0x0501) #define MS_ENH_RSA_AES_PROV_A "Microsoft Enhanced RSA and AES Cryptographic Provider" #define MS_ENH_RSA_AES_PROV_W L"Microsoft Enhanced RSA and AES Cryptographic Provider" #endif @@ -696,7 +696,7 @@ BOOL WINAPI CryptSetProviderW(LPCWSTR,DWORD); #define MS_ENH_DSS_DH_PROV MS_ENH_DSS_DH_PROV_W #define MS_DEF_DH_SCHANNEL_PROV MS_DEF_DH_SCHANNEL_PROV_W #define MS_SCARD_PROV MS_SCARD_PROV_W -#if (WIN32_WINNT >= 0x0501) +#if (_WIN32_WINNT >= 0x0501) #define MS_ENH_RSA_AES_PROV MS_ENH_RSA_AES_PROV_W #endif #else @@ -718,7 +718,7 @@ BOOL WINAPI CryptSetProviderW(LPCWSTR,DWORD); #define MS_ENH_DSS_DH_PROV MS_ENH_DSS_DH_PROV_A #define MS_DEF_DH_SCHANNEL_PROV MS_DEF_DH_SCHANNEL_PROV_A #define MS_SCARD_PROV MS_SCARD_PROV_A -#if (WIN32_WINNT >= 0x0501) +#if (_WIN32_WINNT >= 0x0501) #define MS_ENH_RSA_AES_PROV MS_ENH_RSA_AES_PROV_A #endif #endif |