Moved DCX_* constants to winuser.h.
[wine/multimedia.git] / include / wincrypt.h
blob34fbae50afae8e3bec98ca09cb362cbfdd004f67
1 #ifndef __WINE_WINCRYPT_H
2 #define __WINE_WINCRYPT_H
4 #include "windef.h"
6 /* FIXME: this whole file plus the implementation */
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;
14 /* function declarations */
16 BOOL WINAPI CryptAcquireContextA(HCRYPTPROV *phProv, LPCSTR pszContainer,
17 LPCSTR pszProvider, DWORD dwProvType,
18 DWORD dwFlags);
19 #endif