mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
sync cryptui with wine 1.1.4
svn path=/trunk/; revision=36214
This commit is contained in:
parent
ab7f4d89c5
commit
4ffc65aa1b
2 changed files with 12 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
1 stub ACUIProviderInvokeUI
|
||||
2 stub CryptUIDlgCertMgr
|
||||
2 stdcall CryptUIDlgCertMgr(ptr)
|
||||
3 stub CryptUIDlgFreeCAContext
|
||||
4 stub CryptUIDlgSelectCA
|
||||
5 stub CryptUIDlgSelectCertificateA
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue