/* Android JNI Client Layer Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz 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/. */ #ifndef FREERDP_CLIENT_ANDROID_FREERDP_H #define FREERDP_CLIENT_ANDROID_FREERDP_H #include #include #include #include #include #include "android_event.h" typedef struct { rdpClientContext common; ANDROID_EVENT_QUEUE* event_queue; HANDLE thread; BOOL is_connected; BOOL clipboardSync; wClipboard* clipboard; UINT32 numServerFormats; UINT32 requestedFormatId; HANDLE clipboardRequestEvent; CLIPRDR_FORMAT* serverFormats; CliprdrClientContext* cliprdr; UINT32 clipboardCapabilities; } androidContext; #endif /* FREERDP_CLIENT_ANDROID_FREERDP_H */