90 lines
2.0 KiB
C
90 lines
2.0 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
* FreeRDP Windows Server
|
|
*
|
|
* Copyright 2012 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 WF_INTERFACE_H
|
|
#define WF_INTERFACE_H
|
|
|
|
#include <winpr/windows.h>
|
|
|
|
#include <freerdp/api.h>
|
|
#include <freerdp/freerdp.h>
|
|
#include <freerdp/listener.h>
|
|
|
|
#include <freerdp/freerdp.h>
|
|
#include <freerdp/codec/rfx.h>
|
|
|
|
typedef struct wf_info wfInfo;
|
|
typedef struct wf_peer_context wfPeerContext;
|
|
|
|
struct wf_info
|
|
{
|
|
STREAM* s;
|
|
int width;
|
|
int height;
|
|
int bitsPerPixel;
|
|
HDC driverDC;
|
|
int peerCount;
|
|
BOOL activated;
|
|
void* changeBuffer;
|
|
int framesPerSecond;
|
|
LPTSTR deviceKey;
|
|
TCHAR deviceName[32];
|
|
wfPeerContext** peers;
|
|
|
|
RECT invalid;
|
|
HANDLE mutex;
|
|
BOOL updatePending;
|
|
HANDLE updateEvent;
|
|
HANDLE updateThread;
|
|
HANDLE updateSemaphore;
|
|
RFX_CONTEXT* rfx_context;
|
|
unsigned long lastUpdate;
|
|
unsigned long nextUpdate;
|
|
SURFACE_BITS_COMMAND cmd;
|
|
};
|
|
|
|
struct wf_peer_context
|
|
{
|
|
rdpContext _p;
|
|
|
|
wfInfo* info;
|
|
boolean activated;
|
|
HANDLE updateEvent;
|
|
BOOL socketClose;
|
|
HANDLE socketEvent;
|
|
HANDLE socketThread;
|
|
HANDLE socketSemaphore;
|
|
};
|
|
|
|
struct wf_server
|
|
{
|
|
DWORD port;
|
|
HANDLE thread;
|
|
freerdp_listener* instance;
|
|
};
|
|
typedef struct wf_server wfServer;
|
|
|
|
FREERDP_API BOOL wfreerdp_server_start(wfServer* server);
|
|
FREERDP_API BOOL wfreerdp_server_stop(wfServer* server);
|
|
|
|
FREERDP_API wfServer* wfreerdp_server_new();
|
|
FREERDP_API void wfreerdp_server_free(wfServer* server);
|
|
|
|
#endif /* WF_INTERFACE_H */
|