2012-10-13 18:17:52 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Server Channels
|
|
|
|
*
|
2012-10-16 01:03:34 +04:00
|
|
|
* Copyright 2011-2012 Vic Lee
|
2012-10-13 18:17:52 +04:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-10-19 21:10:42 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-10-13 18:17:52 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2012-10-16 01:03:34 +04:00
|
|
|
#include <freerdp/constants.h>
|
2012-10-13 18:17:52 +04:00
|
|
|
#include <freerdp/server/channels.h>
|
|
|
|
|
2012-11-22 05:21:08 +04:00
|
|
|
#include <winpr/crt.h>
|
2012-10-16 01:03:34 +04:00
|
|
|
#include <winpr/synch.h>
|
2013-04-30 06:35:15 +04:00
|
|
|
#include <winpr/stream.h>
|
2012-10-16 01:03:34 +04:00
|
|
|
|
|
|
|
#include "channels.h"
|
|
|
|
|
2012-10-19 21:10:42 +04:00
|
|
|
/**
|
|
|
|
* this is a workaround to force importing symbols
|
|
|
|
* will need to fix that later on cleanly
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <freerdp/server/audin.h>
|
|
|
|
#include <freerdp/server/rdpsnd.h>
|
2013-08-17 00:46:47 +04:00
|
|
|
#include <freerdp/server/cliprdr.h>
|
2014-07-15 07:42:12 +04:00
|
|
|
#include <freerdp/server/echo.h>
|
2013-08-19 02:09:12 +04:00
|
|
|
#include <freerdp/server/rdpdr.h>
|
2014-11-21 00:19:29 +03:00
|
|
|
#include <freerdp/server/rdpei.h>
|
2013-08-19 05:52:55 +04:00
|
|
|
#include <freerdp/server/drdynvc.h>
|
2016-01-08 16:07:35 +03:00
|
|
|
#include <freerdp/server/remdesk.h>
|
|
|
|
#include <freerdp/server/encomsp.h>
|
2016-05-03 19:48:59 +03:00
|
|
|
#include <freerdp/server/rdpgfx.h>
|
2012-10-19 21:10:42 +04:00
|
|
|
|
2018-08-22 14:12:35 +03:00
|
|
|
void freerdp_channels_dummy()
|
2012-10-19 21:10:42 +04:00
|
|
|
{
|
2018-08-21 10:11:19 +03:00
|
|
|
audin_server_context* audin;
|
|
|
|
RdpsndServerContext* rdpsnd;
|
|
|
|
CliprdrServerContext* cliprdr;
|
|
|
|
echo_server_context* echo;
|
|
|
|
RdpdrServerContext* rdpdr;
|
|
|
|
DrdynvcServerContext* drdynvc;
|
|
|
|
RdpeiServerContext* rdpei;
|
|
|
|
RemdeskServerContext* remdesk;
|
|
|
|
EncomspServerContext* encomsp;
|
|
|
|
RdpgfxServerContext* rdpgfx;
|
|
|
|
audin = audin_server_context_new(NULL);
|
|
|
|
audin_server_context_free(audin);
|
|
|
|
rdpsnd = rdpsnd_server_context_new(NULL);
|
|
|
|
rdpsnd_server_context_free(rdpsnd);
|
|
|
|
cliprdr = cliprdr_server_context_new(NULL);
|
|
|
|
cliprdr_server_context_free(cliprdr);
|
|
|
|
echo = echo_server_context_new(NULL);
|
|
|
|
echo_server_context_free(echo);
|
|
|
|
rdpdr = rdpdr_server_context_new(NULL);
|
|
|
|
rdpdr_server_context_free(rdpdr);
|
|
|
|
drdynvc = drdynvc_server_context_new(NULL);
|
|
|
|
drdynvc_server_context_free(drdynvc);
|
|
|
|
rdpei = rdpei_server_context_new(NULL);
|
|
|
|
rdpei_server_context_free(rdpei);
|
|
|
|
remdesk = remdesk_server_context_new(NULL);
|
|
|
|
remdesk_server_context_free(remdesk);
|
|
|
|
encomsp = encomsp_server_context_new(NULL);
|
|
|
|
encomsp_server_context_free(encomsp);
|
|
|
|
rdpgfx = rdpgfx_server_context_new(NULL);
|
|
|
|
rdpgfx_server_context_free(rdpgfx);
|
2012-10-19 21:10:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* end of ugly symbols import workaround
|
|
|
|
*/
|