cryptui: Stub CryptUIDlgViewSignerInfoA.

This commit is contained in:
Nikolay Sivov 2010-11-11 04:14:53 +03:00 committed by Alexandre Julliard
parent a23514eece
commit f7c99379b2
2 changed files with 7 additions and 1 deletions

View file

@ -16,7 +16,7 @@
16 stub CryptUIDlgViewCertificatePropertiesW
17 stdcall CryptUIDlgViewCertificateW(ptr ptr)
18 stdcall CryptUIDlgViewContext(long ptr ptr wstr long ptr)
19 stub CryptUIDlgViewSignerInfoA
19 stdcall CryptUIDlgViewSignerInfoA(ptr)
20 stub CryptUIDlgViewSignerInfoW
21 stub CryptUIFreeCertificatePropertiesPagesA
22 stub CryptUIFreeCertificatePropertiesPagesW

View file

@ -7038,3 +7038,9 @@ BOOL WINAPI CryptUIWizExport(DWORD dwFlags, HWND hwndParent,
}
return ret;
}
BOOL WINAPI CryptUIDlgViewSignerInfoA(CRYPTUI_VIEWSIGNERINFO_STRUCTA *pcvsi)
{
FIXME("%p: stub\n", pcvsi);
return FALSE;
}