Fixed WNASPI32 ordinals.
[wine.git] / include / wincrypt.h
blob16b47c65c061b90a09391a6aa05e66f864cd486c
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 BOOL WINAPI CryptAcquireContextA(HCRYPTPROV *phProv, LPCSTR pszContainer,
15 LPCSTR pszProvider, DWORD dwProvType,
16 DWORD dwFlags);
17 #endif