sync cryptui with wine 1.1.4

svn path=/trunk/; revision=36214
This commit is contained in:
Christoph von Wittich 2008-09-14 06:02:13 +00:00
parent ab7f4d89c5
commit 4ffc65aa1b
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;
}