]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - windows/wincapi.h
GTK2: Return 2.20 compatibility back
[PuTTY.git] / windows / wincapi.h
1 /*
2  * wincapi.h: Windows Crypto API functions defined in wincrypt.c
3  * that use the crypt32 library. Also centralises the machinery
4  * for dynamically loading that library.
5  */
6
7 #if !defined NO_SECURITY
8
9 #ifndef WINCAPI_GLOBAL
10 #define WINCAPI_GLOBAL extern
11 #endif
12
13 DECL_WINDOWS_FUNCTION(WINCAPI_GLOBAL, BOOL, CryptProtectMemory,
14                       (LPVOID,DWORD,DWORD));
15
16 int got_crypt(void);
17
18 #endif