Converted to the new debug interface, using script written by Patrik
[wine/testsucceed.git] / dlls / advapi32 / crypt.c
blobb0f48c541e03a03463fd01ae5442045a3a4f5ca9
1 /*
2 * dlls/advapi32/crypt.c
3 */
4 #include "windef.h"
5 #include "winerror.h"
6 #include "wincrypt.h"
7 #include "debugtools.h"
9 DEFAULT_DEBUG_CHANNEL(advapi)
11 /******************************************************************************
12 * CryptAcquireContextA
13 * Acquire a crypto provider context handle.
15 * PARAMS
16 * phProv: Pointer to HCRYPTPROV for the output.
17 * pszContainer: FIXME (unknown)
18 * pszProvider: FIXME (unknown)
19 * dwProvType: Crypto provider type to get a handle.
20 * dwFlags: flags for the operation
22 * RETURNS TRUE on success, FALSE on failure.
25 BOOL WINAPI
26 CryptAcquireContextA( HCRYPTPROV *phProv, LPCSTR pszContainer,
27 LPCSTR pszProvider, DWORD dwProvType, DWORD dwFlags)
29 FIXME_(advapi)("(%p, %s, %s, %ld, %08lx): stub!\n", phProv, pszContainer,
30 pszProvider, dwProvType, dwFlags);
31 return FALSE;