27 lines
1.2 KiB
Objective-C
27 lines
1.2 KiB
Objective-C
/*
|
|
RDP ui callbacks
|
|
|
|
Copyright 2013 Thincast Technologies GmbH, Authors: Martin Fleisz, Dorian Johnson
|
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
|
|
If a copy of the MPL was not distributed with this file, You can obtain one at
|
|
http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#import "ios_freerdp.h"
|
|
|
|
BOOL ios_ui_begin_paint(rdpContext* context);
|
|
BOOL ios_ui_end_paint(rdpContext* context);
|
|
BOOL ios_ui_resize_window(rdpContext* context);
|
|
|
|
BOOL ios_ui_authenticate(freerdp* instance, char** username, char** password, char** domain);
|
|
BOOL ios_ui_gw_authenticate(freerdp* instance, char** username, char** password, char** domain);
|
|
DWORD ios_ui_verify_certificate(freerdp* instance, const char* common_name, const char* subject,
|
|
const char* issuer, const char* fingerprint, BOOL host_mismatch);
|
|
DWORD ios_ui_verify_changed_certificate(freerdp* instance, const char* common_name,
|
|
const char* subject, const char* issuer,
|
|
const char* new_fingerprint, const char* old_subject,
|
|
const char* old_issuer, const char* old_fingerprint);
|
|
|
|
void ios_allocate_display_buffer(mfInfo* mfi);
|