secur32: Add application protocol stubs for macOS.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Hans Leidekker 2020-04-10 22:18:33 +02:00 committed by Alexandre Julliard
parent 65c72c93ce
commit 341fe50c28
1 changed files with 12 additions and 0 deletions

View File

@ -1194,6 +1194,18 @@ void schan_imp_free_certificate_credentials(schan_credentials *c)
{
}
void schan_imp_set_application_protocols(schan_imp_session session, unsigned char *buffer, unsigned int buflen)
{
FIXME("no support for application protocols on this platform\n");
}
SECURITY_STATUS schan_imp_get_application_protocol(schan_imp_session session,
SecPkgContext_ApplicationProtocol *protocol)
{
FIXME("no support for application protocols on this platform\n");
return SEC_E_UNSUPPORTED_FUNCTION;
}
BOOL schan_imp_init(void)
{
TRACE("()\n");