Added entries for most Crypt* calls.
[wine] / include / wincrypt.h
1 #ifndef __WINE_WINCRYPT_H
2 #define __WINE_WINCRYPT_H
3
4 /* FIXME: this whole file plus the implementation */
5
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;
11
12 /* function declarations */
13
14 BOOL32 WINAPI CryptAcquireContextA(HCRYPTPROV *phProv, LPCSTR pszContainer,
15                                    LPCSTR pszProvider, DWORD dwProvType, 
16                                    DWORD dwFlags);
17 #endif