1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00
putty-source/windows/wincapi.h

19 lines
390 B
C
Raw Normal View History

/*
* wincapi.h: Windows Crypto API functions defined in wincrypt.c
* that use the crypt32 library. Also centralises the machinery
* for dynamically loading that library.
*/
#if !defined NO_SECURITY
#ifndef WINCAPI_GLOBAL
#define WINCAPI_GLOBAL extern
#endif
DECL_WINDOWS_FUNCTION(WINCAPI_GLOBAL, BOOL, CryptProtectMemory,
(LPVOID,DWORD,DWORD));
int got_crypt(void);
#endif