2012-09-15 20:29:33 -04:00
|
|
|
/**
|
2019-11-06 15:24:51 +01:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* FreeRDP Windows Server
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
* Copyright 2012 Corey Clayton <can.of.tuna@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.
|
|
|
|
*/
|
2012-09-15 20:29:33 -04:00
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#ifndef FREERDP_SERVER_WIN_INTERFACE_H
|
|
|
|
#define FREERDP_SERVER_WIN_INTERFACE_H
|
2012-09-15 20:29:33 -04:00
|
|
|
|
|
|
|
#include <winpr/windows.h>
|
2012-09-15 22:19:26 -04:00
|
|
|
|
|
|
|
#include <freerdp/api.h>
|
2012-09-15 20:29:33 -04:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/listener.h>
|
|
|
|
|
2012-09-15 22:19:26 -04:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/codec/rfx.h>
|
2012-10-19 17:29:44 -04:00
|
|
|
|
2012-10-10 20:44:27 -04:00
|
|
|
#include <freerdp/server/rdpsnd.h>
|
2012-09-15 22:19:26 -04:00
|
|
|
|
2014-07-17 18:27:40 -04:00
|
|
|
#if _WIN32_WINNT >= 0x0602
|
2019-11-06 15:24:51 +01:00
|
|
|
#define WITH_DXGI_1_2 1
|
2014-07-17 18:27:40 -04:00
|
|
|
#endif
|
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#define FREERDP_SERVER_WIN_SRV_CALLBACK_EVENT_CONNECT 1
|
|
|
|
#define FREERDP_SERVER_WIN_SRV_CALLBACK_EVENT_DISCONNECT 2
|
|
|
|
#define FREERDP_SERVER_WIN_SRV_CALLBACK_EVENT_ACTIVATE 4
|
|
|
|
#define FREERDP_SERVER_WIN_SRV_CALLBACK_EVENT_AUTH 8
|
2012-10-08 22:31:40 -04:00
|
|
|
|
2012-09-15 22:19:26 -04:00
|
|
|
typedef struct wf_info wfInfo;
|
|
|
|
typedef struct wf_peer_context wfPeerContext;
|
|
|
|
|
|
|
|
struct wf_info
|
|
|
|
{
|
2013-03-21 15:19:33 -04:00
|
|
|
wStream* s;
|
2012-10-31 17:24:14 -04:00
|
|
|
|
2019-11-06 15:24:51 +01:00
|
|
|
// screen and monitor info
|
2012-10-31 17:24:14 -04:00
|
|
|
int screenID;
|
|
|
|
int virtscreen_width;
|
|
|
|
int virtscreen_height;
|
|
|
|
int servscreen_width;
|
|
|
|
int servscreen_height;
|
|
|
|
int servscreen_xoffset;
|
|
|
|
int servscreen_yoffset;
|
|
|
|
|
2012-09-16 23:09:36 -04:00
|
|
|
int frame_idx;
|
2012-09-15 22:19:26 -04:00
|
|
|
int bitsPerPixel;
|
|
|
|
HDC driverDC;
|
|
|
|
int peerCount;
|
2012-09-16 21:05:51 -04:00
|
|
|
int activePeerCount;
|
2012-09-15 22:19:26 -04:00
|
|
|
void* changeBuffer;
|
|
|
|
int framesPerSecond;
|
|
|
|
LPTSTR deviceKey;
|
|
|
|
TCHAR deviceName[32];
|
2012-09-16 21:05:51 -04:00
|
|
|
freerdp_peer** peers;
|
|
|
|
BOOL mirrorDriverActive;
|
2012-09-18 14:07:38 -04:00
|
|
|
UINT framesWaiting;
|
2012-09-15 22:19:26 -04:00
|
|
|
|
2012-10-12 21:02:42 -04:00
|
|
|
HANDLE snd_mutex;
|
|
|
|
BOOL snd_stop;
|
2013-03-15 21:04:50 -04:00
|
|
|
AUDIO_FORMAT* agreed_format;
|
2012-10-12 21:02:42 -04:00
|
|
|
|
2012-09-15 22:19:26 -04:00
|
|
|
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;
|
2012-10-05 15:25:30 -04:00
|
|
|
|
|
|
|
BOOL input_disabled;
|
|
|
|
BOOL force_all_disconnect;
|
2012-09-15 22:19:26 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wf_peer_context
|
|
|
|
{
|
|
|
|
rdpContext _p;
|
|
|
|
|
|
|
|
wfInfo* info;
|
2012-09-16 23:09:36 -04:00
|
|
|
int frame_idx;
|
2012-09-15 22:19:26 -04:00
|
|
|
HANDLE updateEvent;
|
|
|
|
BOOL socketClose;
|
|
|
|
HANDLE socketEvent;
|
|
|
|
HANDLE socketThread;
|
|
|
|
HANDLE socketSemaphore;
|
2012-10-10 20:44:27 -04:00
|
|
|
|
2014-02-27 13:30:04 -05:00
|
|
|
HANDLE vcm;
|
2013-08-18 21:52:55 -04:00
|
|
|
RdpsndServerContext* rdpsnd;
|
2012-09-15 22:19:26 -04:00
|
|
|
};
|
|
|
|
|
2012-09-15 20:29:33 -04:00
|
|
|
struct wf_server
|
|
|
|
{
|
|
|
|
DWORD port;
|
|
|
|
HANDLE thread;
|
|
|
|
freerdp_listener* instance;
|
|
|
|
};
|
|
|
|
typedef struct wf_server wfServer;
|
|
|
|
|
2019-11-06 15:24:51 +01:00
|
|
|
typedef void(__stdcall* cbCallback)(int, UINT32);
|
2012-10-05 23:25:18 -04:00
|
|
|
|
2021-06-16 14:50:14 +02:00
|
|
|
FREERDP_API int get_screen_info(int id, _TCHAR* name, size_t length, int* w, int* h, int* b);
|
2012-10-23 20:32:29 -04:00
|
|
|
FREERDP_API void set_screen_id(int id);
|
2012-10-23 18:49:03 -04:00
|
|
|
|
2012-09-15 22:19:26 -04:00
|
|
|
FREERDP_API BOOL wfreerdp_server_start(wfServer* server);
|
|
|
|
FREERDP_API BOOL wfreerdp_server_stop(wfServer* server);
|
2012-09-15 20:29:33 -04:00
|
|
|
|
2013-02-14 22:20:43 +01:00
|
|
|
FREERDP_API wfServer* wfreerdp_server_new(void);
|
2012-09-15 22:19:26 -04:00
|
|
|
FREERDP_API void wfreerdp_server_free(wfServer* server);
|
2012-09-15 20:29:33 -04:00
|
|
|
|
2012-10-04 16:51:23 -04:00
|
|
|
FREERDP_API BOOL wfreerdp_server_is_running(wfServer* server);
|
|
|
|
|
2013-02-14 22:20:43 +01:00
|
|
|
FREERDP_API UINT32 wfreerdp_server_num_peers(void);
|
2019-11-06 15:24:51 +01:00
|
|
|
FREERDP_API UINT32 wfreerdp_server_get_peer_hostname(int pId, wchar_t* dstStr);
|
2012-10-05 19:22:38 -04:00
|
|
|
FREERDP_API BOOL wfreerdp_server_peer_is_local(int pId);
|
|
|
|
FREERDP_API BOOL wfreerdp_server_peer_is_connected(int pId);
|
|
|
|
FREERDP_API BOOL wfreerdp_server_peer_is_activated(int pId);
|
|
|
|
FREERDP_API BOOL wfreerdp_server_peer_is_authenticated(int pId);
|
2012-10-05 18:18:59 -04:00
|
|
|
|
2012-10-08 22:31:40 -04:00
|
|
|
FREERDP_API void wfreerdp_server_register_callback_event(cbCallback cb);
|
|
|
|
|
|
|
|
void wfreerdp_server_peer_callback_event(int pId, UINT32 eType);
|
2012-10-05 23:25:18 -04:00
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#endif /* FREERDP_SERVER_WIN_INTERFACE_H */
|