2016-08-03 19:44:26 +03:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* X11 Client Channels
|
|
|
|
*
|
|
|
|
* Copyright 2013 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.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 13:20:38 +03:00
|
|
|
#include <freerdp/config.h>
|
2016-08-03 19:44:26 +03:00
|
|
|
|
|
|
|
#include <freerdp/gdi/gfx.h>
|
|
|
|
|
2021-10-18 11:18:42 +03:00
|
|
|
#include <freerdp/gdi/video.h>
|
|
|
|
|
2016-08-03 19:44:26 +03:00
|
|
|
#include "wlf_channels.h"
|
2018-12-19 18:18:13 +03:00
|
|
|
#include "wlf_cliprdr.h"
|
2018-12-18 14:30:31 +03:00
|
|
|
#include "wlf_disp.h"
|
2016-08-03 19:44:26 +03:00
|
|
|
#include "wlfreerdp.h"
|
|
|
|
|
2022-01-19 11:08:02 +03:00
|
|
|
void wlf_OnChannelConnectedEventHandler(void* context, const ChannelConnectedEventArgs* e)
|
2016-08-03 19:44:26 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
wlfContext* wlf = (wlfContext*)context;
|
2016-08-03 19:44:26 +03:00
|
|
|
|
2022-01-19 11:27:39 +03:00
|
|
|
WINPR_ASSERT(wlf);
|
|
|
|
WINPR_ASSERT(e);
|
|
|
|
|
2022-01-19 13:05:55 +03:00
|
|
|
if (FALSE)
|
2016-08-03 19:44:26 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
else if (strcmp(e->name, RAIL_SVC_CHANNEL_NAME) == 0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
else if (strcmp(e->name, CLIPRDR_SVC_CHANNEL_NAME) == 0)
|
|
|
|
{
|
2018-12-19 18:18:13 +03:00
|
|
|
wlf_cliprdr_init(wlf->clipboard, (CliprdrClientContext*)e->pInterface);
|
2016-08-03 19:44:26 +03:00
|
|
|
}
|
2018-12-18 14:30:31 +03:00
|
|
|
else if (strcmp(e->name, DISP_DVC_CHANNEL_NAME) == 0)
|
|
|
|
{
|
|
|
|
wlf_disp_init(wlf->disp, (DispClientContext*)e->pInterface);
|
|
|
|
}
|
2022-01-19 13:05:55 +03:00
|
|
|
else
|
|
|
|
freerdp_client_OnChannelConnectedEventHandler(context, e);
|
2016-08-03 19:44:26 +03:00
|
|
|
}
|
|
|
|
|
2022-01-19 11:08:02 +03:00
|
|
|
void wlf_OnChannelDisconnectedEventHandler(void* context, const ChannelDisconnectedEventArgs* e)
|
2016-08-03 19:44:26 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
wlfContext* wlf = (wlfContext*)context;
|
2016-08-03 19:44:26 +03:00
|
|
|
|
2022-01-19 11:27:39 +03:00
|
|
|
WINPR_ASSERT(wlf);
|
|
|
|
WINPR_ASSERT(e);
|
|
|
|
|
2022-01-19 13:05:55 +03:00
|
|
|
if (FALSE)
|
2016-08-03 19:44:26 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
else if (strcmp(e->name, RAIL_SVC_CHANNEL_NAME) == 0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
else if (strcmp(e->name, CLIPRDR_SVC_CHANNEL_NAME) == 0)
|
|
|
|
{
|
2018-12-19 18:18:13 +03:00
|
|
|
wlf_cliprdr_uninit(wlf->clipboard, (CliprdrClientContext*)e->pInterface);
|
2016-08-03 19:44:26 +03:00
|
|
|
}
|
2018-12-18 14:30:31 +03:00
|
|
|
else if (strcmp(e->name, DISP_DVC_CHANNEL_NAME) == 0)
|
|
|
|
{
|
|
|
|
wlf_disp_uninit(wlf->disp, (DispClientContext*)e->pInterface);
|
|
|
|
}
|
2022-01-19 13:05:55 +03:00
|
|
|
else
|
|
|
|
freerdp_client_OnChannelDisconnectedEventHandler(context, e);
|
2016-08-03 19:44:26 +03:00
|
|
|
}
|