Module: wine Branch: master Commit: 341fe50c287b0f421de16aa138af724f559dd880 URL: https://source.winehq.org/git/wine.git/?a=commit;h=341fe50c287b0f421de16aa13... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Fri Apr 10 22:18:33 2020 +0200 secur32: Add application protocol stubs for macOS. Signed-off-by: Hans Leidekker <hans(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/secur32/schannel_macosx.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dlls/secur32/schannel_macosx.c b/dlls/secur32/schannel_macosx.c index f86a561cf8..d725c9d22c 100644 --- a/dlls/secur32/schannel_macosx.c +++ b/dlls/secur32/schannel_macosx.c @@ -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");