Moved scrollbar tracking code to scroll.c.
[wine] / include / wincrypt.h
1 #ifndef __WINE_WINCRYPT_H
2 #define __WINE_WINCRYPT_H
3
4 #include "windef.h"
5
6 /* FIXME: this whole file plus the implementation */
7
8 /* some typedefs for function parameters */
9 typedef unsigned int ALG_ID;
10 typedef unsigned long HCRYPTPROV;
11 typedef unsigned long HCRYPTKEY;
12 typedef unsigned long HCRYPTHASH;
13
14 /* function declarations */
15
16 BOOL WINAPI CryptAcquireContextA(HCRYPTPROV *phProv, LPCSTR pszContainer,
17                                    LPCSTR pszProvider, DWORD dwProvType, 
18                                    DWORD dwFlags);
19 #endif