diff options
author | Yang Tse <yangsita@gmail.com> | 2009-01-30 01:37:37 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-01-30 01:37:37 +0000 |
commit | a97f52db2082f94860b4eda9bf80a1b6201123fa (patch) | |
tree | 7d31b4240da3279152b27e68198c437305ddb5d5 | |
parent | 5267be57f7304ff05a4ab9b9659d44916be72f1c (diff) | |
download | curl-a97f52db2082f94860b4eda9bf80a1b6201123fa.tar.gz |
Provide another definition missing in MinGW's headers
-rw-r--r-- | lib/curl_sspi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/curl_sspi.h b/lib/curl_sspi.h index 6b4c4bc51..87aa380fc 100644 --- a/lib/curl_sspi.h +++ b/lib/curl_sspi.h @@ -49,6 +49,9 @@ #ifndef SEC_E_BUFFER_TOO_SMALL # define SEC_E_BUFFER_TOO_SMALL ((HRESULT)0x80090321L) #endif +#ifndef SEC_E_CONTEXT_EXPIRED +# define SEC_E_CONTEXT_EXPIRED ((HRESULT)0x80090317L) +#endif #ifndef SEC_E_CRYPTO_SYSTEM_INVALID # define SEC_E_CRYPTO_SYSTEM_INVALID ((HRESULT)0x80090337L) #endif |