cryptuiapi: Add a stub for CryptUIDlgCertMgr.
This commit is contained in:
parent
7ddb29f6fd
commit
6c4d39bcaf
|
@ -1,5 +1,5 @@
|
||||||
1 stub ACUIProviderInvokeUI
|
1 stub ACUIProviderInvokeUI
|
||||||
2 stub CryptUIDlgCertMgr
|
2 stdcall CryptUIDlgCertMgr(ptr)
|
||||||
3 stub CryptUIDlgFreeCAContext
|
3 stub CryptUIDlgFreeCAContext
|
||||||
4 stub CryptUIDlgSelectCA
|
4 stub CryptUIDlgSelectCA
|
||||||
5 stub CryptUIDlgSelectCertificateA
|
5 stub CryptUIDlgSelectCertificateA
|
||||||
|
|
|
@ -22,6 +22,8 @@
|
||||||
|
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
|
#include "winuser.h"
|
||||||
|
#include "cryptuiapi.h"
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(cryptui);
|
WINE_DEFAULT_DEBUG_CHANNEL(cryptui);
|
||||||
|
@ -44,3 +46,12 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* CryptUIDlgCertMgr (CRYPTUI.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
|
||||||
|
{
|
||||||
|
FIXME("(%p): stub\n", pCryptUICertMgr);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue