Some more recursive include fixes/optimizations.
[wine.git] / include / wincrypt.h
blobc1e5f757881286c1d67c4d6b1e08d14838adeb64
1 #ifndef __WINE_WINCRYPT_H
2 #define __WINE_WINCRYPT_H
4 /* FIXME: this whole file plus the implementation */
6 /* some typedefs for function parameters */
7 typedef unsigned int ALG_ID;
8 typedef unsigned long HCRYPTPROV;
9 typedef unsigned long HCRYPTKEY;
10 typedef unsigned long HCRYPTHASH;
12 /* function declarations */
14 BOOL32 WINAPI CryptAcquireContextA(HCRYPTPROV *phProv, LPCSTR pszContainer,
15 LPCSTR pszProvider, DWORD dwProvType,
16 DWORD dwFlags);
17 #endif