2011-09-14 00:30:16 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-09-14 00:30:16 +04:00
|
|
|
* X11 Peer
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 __XF_PEER_H
|
|
|
|
#define __XF_PEER_H
|
|
|
|
|
2013-02-17 20:59:29 +04:00
|
|
|
#include <winpr/crt.h>
|
2013-05-02 02:54:42 +04:00
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/thread.h>
|
2013-03-22 00:45:25 +04:00
|
|
|
#include <winpr/stream.h>
|
2013-02-17 20:59:29 +04:00
|
|
|
#include <winpr/collections.h>
|
|
|
|
|
2012-01-08 06:36:12 +04:00
|
|
|
#include <freerdp/gdi/gdi.h>
|
|
|
|
#include <freerdp/gdi/dc.h>
|
|
|
|
#include <freerdp/gdi/region.h>
|
2011-10-03 04:52:17 +04:00
|
|
|
#include <freerdp/codec/rfx.h>
|
2011-09-14 00:30:16 +04:00
|
|
|
#include <freerdp/listener.h>
|
2012-01-08 06:36:12 +04:00
|
|
|
#include <freerdp/utils/stopwatch.h>
|
2011-09-14 00:30:16 +04:00
|
|
|
|
2012-01-31 06:35:15 +04:00
|
|
|
typedef struct xf_peer_context xfPeerContext;
|
|
|
|
|
2011-10-18 11:10:12 +04:00
|
|
|
#include "xfreerdp.h"
|
|
|
|
|
2013-02-17 20:59:29 +04:00
|
|
|
#define PeerEvent_Base 0
|
|
|
|
|
|
|
|
#define PeerEvent_Class (PeerEvent_Base + 1)
|
|
|
|
|
2013-02-17 21:23:25 +04:00
|
|
|
#define PeerEvent_EncodeRegion 1
|
2013-02-17 20:59:29 +04:00
|
|
|
|
2011-10-18 11:10:12 +04:00
|
|
|
struct xf_peer_context
|
2011-09-14 00:30:16 +04:00
|
|
|
{
|
2011-10-18 11:10:12 +04:00
|
|
|
rdpContext _p;
|
|
|
|
|
2012-02-02 07:05:01 +04:00
|
|
|
int fps;
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* s;
|
2012-02-02 06:37:01 +04:00
|
|
|
HGDI_DC hdc;
|
2011-10-18 11:10:12 +04:00
|
|
|
xfInfo* info;
|
2013-05-02 06:15:21 +04:00
|
|
|
HANDLE mutex;
|
|
|
|
HANDLE event;
|
2012-01-08 06:36:12 +04:00
|
|
|
int activations;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL activated;
|
2013-05-02 02:54:42 +04:00
|
|
|
HANDLE monitorThread;
|
2012-02-02 06:37:01 +04:00
|
|
|
RFX_CONTEXT* rfx_context;
|
2013-02-17 20:59:29 +04:00
|
|
|
wMessageQueue* queue;
|
2011-09-14 00:30:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
void xf_peer_accepted(freerdp_listener* instance, freerdp_peer* client);
|
|
|
|
|
|
|
|
#endif /* __XF_PEER_H */
|