cryptuiapi: Add a stub for CryptUIDlgCertMgr.

This commit is contained in:
Juan Lang 2008-08-28 08:41:59 -07:00 committed by Alexandre Julliard
parent 7ddb29f6fd
commit 6c4d39bcaf
2 changed files with 12 additions and 1 deletions

View file

@ -1,5 +1,5 @@
1 stub ACUIProviderInvokeUI
2 stub CryptUIDlgCertMgr
2 stdcall CryptUIDlgCertMgr(ptr)
3 stub CryptUIDlgFreeCAContext
4 stub CryptUIDlgSelectCA
5 stub CryptUIDlgSelectCertificateA

View file

@ -22,6 +22,8 @@
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "cryptuiapi.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(cryptui);
@ -44,3 +46,12 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
}
return TRUE;
}
/***********************************************************************
* CryptUIDlgCertMgr (CRYPTUI.@)
*/
BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
{
FIXME("(%p): stub\n", pCryptUICertMgr);
return FALSE;
}