2014-07-15 02:01:29 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-07-15 10:50:35 +03:00
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2014-07-15 02:01:29 +04:00
|
|
|
*
|
|
|
|
* 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>
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-16 00:34:15 +04:00
|
|
|
#include "shadow.h"
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-16 00:34:15 +04:00
|
|
|
#include "shadow_remdesk.h"
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-16 00:34:15 +04:00
|
|
|
int shadow_client_remdesk_init(rdpShadowClient* client)
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
RemdeskServerContext* remdesk = NULL;
|
2014-07-16 02:38:32 +04:00
|
|
|
|
|
|
|
remdesk = client->remdesk = remdesk_server_context_new(client->vcm);
|
2015-07-15 10:50:35 +03:00
|
|
|
remdesk->rdpcontext = &client->context;
|
2014-07-16 02:38:32 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
remdesk->custom = (void*)client;
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-16 00:34:15 +04:00
|
|
|
if (client->remdesk)
|
|
|
|
client->remdesk->Start(client->remdesk);
|
2014-07-15 02:01:29 +04:00
|
|
|
|
2014-07-16 00:34:15 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2015-05-22 10:29:16 +03:00
|
|
|
|
|
|
|
void shadow_client_remdesk_uninit(rdpShadowClient* client)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
if (client->remdesk)
|
|
|
|
{
|
2015-05-22 10:29:16 +03:00
|
|
|
client->remdesk->Stop(client->remdesk);
|
2015-04-08 21:13:52 +03:00
|
|
|
remdesk_server_context_free(client->remdesk);
|
2015-05-22 10:29:16 +03:00
|
|
|
client->remdesk = NULL;
|
|
|
|
}
|
|
|
|
}
|