2011-12-11 15:49:08 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-12-11 15:49:08 +04:00
|
|
|
* Server Virtual Channel Interface
|
|
|
|
*
|
|
|
|
* Copyright 2011-2012 Vic Lee
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The server-side virtual channel API follows the Microsoft Remote Desktop
|
|
|
|
* Services API functions WTSVirtualChannel* defined in:
|
|
|
|
* http://msdn.microsoft.com/en-us/library/windows/desktop/aa383464.aspx
|
|
|
|
*
|
|
|
|
* Difference between the MS API are documented in this header. All functions
|
|
|
|
* are implemented in and integrated with libfreerdp-channels.
|
|
|
|
*
|
2011-12-12 12:42:42 +04:00
|
|
|
* Unlike MS API, all functions except WTSVirtualChannelOpenEx in this
|
|
|
|
* implementation are thread-safe.
|
2011-12-11 15:49:08 +04:00
|
|
|
*/
|
|
|
|
|
2012-12-14 09:25:48 +04:00
|
|
|
#ifndef FREERDP_WTSVC_H
|
|
|
|
#define FREERDP_WTSVC_H
|
2011-12-11 15:49:08 +04:00
|
|
|
|
|
|
|
#include <freerdp/types.h>
|
|
|
|
#include <freerdp/peer.h>
|
|
|
|
|
2013-08-21 02:06:19 +04:00
|
|
|
#include <winpr/winpr.h>
|
|
|
|
#include <winpr/wtypes.h>
|
2014-02-17 03:02:50 +04:00
|
|
|
#include <winpr/wtsapi.h>
|
2011-12-11 15:49:08 +04:00
|
|
|
|
2013-03-20 02:33:01 +04:00
|
|
|
#ifdef __cplusplus
|
2019-11-06 17:24:51 +03:00
|
|
|
extern "C"
|
|
|
|
{
|
2013-03-20 02:33:01 +04:00
|
|
|
#endif
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
DRDYNVC_STATE_NONE = 0,
|
|
|
|
DRDYNVC_STATE_INITIALIZED = 1,
|
|
|
|
DRDYNVC_STATE_READY = 2,
|
|
|
|
DRDYNVC_STATE_FAILED = 3
|
|
|
|
};
|
2016-05-03 19:48:59 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
/**
|
|
|
|
* WTSVirtualChannelManager functions are FreeRDP extensions to the API.
|
|
|
|
*/
|
2011-12-12 12:42:42 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
FREERDP_API void WTSVirtualChannelManagerGetFileDescriptor(HANDLE hServer, void** fds,
|
|
|
|
int* fds_count);
|
|
|
|
FREERDP_API BOOL WTSVirtualChannelManagerCheckFileDescriptor(HANDLE hServer);
|
|
|
|
FREERDP_API HANDLE WTSVirtualChannelManagerGetEventHandle(HANDLE hServer);
|
|
|
|
FREERDP_API BOOL WTSVirtualChannelManagerIsChannelJoined(HANDLE hServer, const char* name);
|
|
|
|
FREERDP_API BYTE WTSVirtualChannelManagerGetDrdynvcState(HANDLE hServer);
|
2014-02-16 02:42:59 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
/**
|
|
|
|
* Extended FreeRDP WTS functions for channel handling
|
|
|
|
*/
|
|
|
|
FREERDP_API UINT16 WTSChannelGetId(freerdp_peer* client, const char* channel_name);
|
|
|
|
FREERDP_API BOOL WTSIsChannelJoinedByName(freerdp_peer* client, const char* channel_name);
|
|
|
|
FREERDP_API BOOL WTSIsChannelJoinedById(freerdp_peer* client, const UINT16 channel_id);
|
|
|
|
FREERDP_API BOOL WTSChannelSetHandleByName(freerdp_peer* client, const char* channel_name,
|
|
|
|
void* handle);
|
|
|
|
FREERDP_API BOOL WTSChannelSetHandleById(freerdp_peer* client, const UINT16 channel_id,
|
|
|
|
void* handle);
|
|
|
|
FREERDP_API void* WTSChannelGetHandleByName(freerdp_peer* client, const char* channel_name);
|
|
|
|
FREERDP_API void* WTSChannelGetHandleById(freerdp_peer* client, const UINT16 channel_id);
|
2020-02-02 16:01:38 +03:00
|
|
|
FREERDP_API const char* WTSChannelGetName(freerdp_peer* client, UINT16 channel_id);
|
2014-05-07 22:20:02 +04:00
|
|
|
|
2013-03-20 02:33:01 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-12-14 09:25:48 +04:00
|
|
|
#endif /* FREERDP_WTSVC_H */
|