/** * FreeRDP: A Remote Desktop Protocol Implementation * Graphics Pipeline Extension * * Copyright 2013-2014 Marc-Andre Moreau * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef FREERDP_CHANNEL_RDPGFX_CLIENT_MAIN_H #define FREERDP_CHANNEL_RDPGFX_CLIENT_MAIN_H #include #include #include #include #include #include #include #include #include struct _RDPGFX_CHANNEL_CALLBACK { IWTSVirtualChannelCallback iface; IWTSPlugin* plugin; IWTSVirtualChannelManager* channel_mgr; IWTSVirtualChannel* channel; }; typedef struct _RDPGFX_CHANNEL_CALLBACK RDPGFX_CHANNEL_CALLBACK; struct _RDPGFX_LISTENER_CALLBACK { IWTSListenerCallback iface; IWTSPlugin* plugin; IWTSVirtualChannelManager* channel_mgr; RDPGFX_CHANNEL_CALLBACK* channel_callback; }; typedef struct _RDPGFX_LISTENER_CALLBACK RDPGFX_LISTENER_CALLBACK; struct _RDPGFX_PLUGIN { IWTSPlugin iface; IWTSListener* listener; RDPGFX_LISTENER_CALLBACK* listener_callback; rdpSettings* settings; BOOL ThinClient; BOOL SmallCache; BOOL Progressive; BOOL ProgressiveV2; BOOL H264; BOOL AVC444; UINT32 capsFilter; ZGFX_CONTEXT* zgfx; UINT32 UnacknowledgedFrames; UINT32 TotalDecodedFrames; UINT64 StartDecodingTime; BOOL suspendFrameAcks; BOOL sendFrameAcks; wHashTable* SurfaceTable; UINT16 MaxCacheSlots; void* CacheSlots[25600]; rdpContext* rdpcontext; wLog* log; RDPGFX_CAPSET ConnectionCaps; BOOL SendQoeAck; }; typedef struct _RDPGFX_PLUGIN RDPGFX_PLUGIN; #endif /* FREERDP_CHANNEL_RDPGFX_CLIENT_MAIN_H */