b8c110d19b
The rdpContext gets an event which will get set if an error occoured in a channel. If a thread or a void callback has to report an error it will get signaled by this system.
114 lines
5.8 KiB
C
114 lines
5.8 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* Clipboard Virtual Channel Server Interface
|
|
*
|
|
* Copyright 2013 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.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.
|
|
*/
|
|
|
|
#ifndef FREERDP_CHANNEL_SERVER_CLIPRDR_H
|
|
#define FREERDP_CHANNEL_SERVER_CLIPRDR_H
|
|
|
|
#include <freerdp/api.h>
|
|
#include <freerdp/types.h>
|
|
#include <freerdp/channels/wtsvc.h>
|
|
|
|
#include <freerdp/channels/cliprdr.h>
|
|
#include <freerdp/client/cliprdr.h>
|
|
|
|
/**
|
|
* Server Interface
|
|
*/
|
|
|
|
typedef struct _cliprdr_server_context CliprdrServerContext;
|
|
|
|
typedef WIN32ERROR (*psCliprdrOpen)(CliprdrServerContext* context);
|
|
typedef WIN32ERROR (*psCliprdrClose)(CliprdrServerContext* context);
|
|
typedef WIN32ERROR (*psCliprdrStart)(CliprdrServerContext* context);
|
|
typedef WIN32ERROR (*psCliprdrStop)(CliprdrServerContext* context);
|
|
typedef HANDLE (*psCliprdrGetEventHandle)(CliprdrServerContext* context);
|
|
typedef WIN32ERROR (*psCliprdrCheckEventHandle)(CliprdrServerContext* context);
|
|
|
|
typedef WIN32ERROR (*psCliprdrServerCapabilities)(CliprdrServerContext* context, CLIPRDR_CAPABILITIES* capabilities);
|
|
typedef WIN32ERROR (*psCliprdrClientCapabilities)(CliprdrServerContext* context, CLIPRDR_CAPABILITIES* capabilities);
|
|
typedef WIN32ERROR (*psCliprdrMonitorReady)(CliprdrServerContext* context, CLIPRDR_MONITOR_READY* monitorReady);
|
|
typedef WIN32ERROR (*psCliprdrTempDirectory)(CliprdrServerContext* context, CLIPRDR_TEMP_DIRECTORY* tempDirectory);
|
|
typedef WIN32ERROR (*psCliprdrClientFormatList)(CliprdrServerContext* context, CLIPRDR_FORMAT_LIST* formatList);
|
|
typedef WIN32ERROR (*psCliprdrServerFormatList)(CliprdrServerContext* context, CLIPRDR_FORMAT_LIST* formatList);
|
|
typedef WIN32ERROR (*psCliprdrClientFormatListResponse)(CliprdrServerContext* context, CLIPRDR_FORMAT_LIST_RESPONSE* formatListResponse);
|
|
typedef WIN32ERROR (*psCliprdrServerFormatListResponse)(CliprdrServerContext* context, CLIPRDR_FORMAT_LIST_RESPONSE* formatListResponse);
|
|
typedef WIN32ERROR (*psCliprdrClientLockClipboardData)(CliprdrServerContext* context, CLIPRDR_LOCK_CLIPBOARD_DATA* lockClipboardData);
|
|
typedef WIN32ERROR (*psCliprdrServerLockClipboardData)(CliprdrServerContext* context, CLIPRDR_LOCK_CLIPBOARD_DATA* lockClipboardData);
|
|
typedef WIN32ERROR (*psCliprdrClientUnlockClipboardData)(CliprdrServerContext* context, CLIPRDR_UNLOCK_CLIPBOARD_DATA* unlockClipboardData);
|
|
typedef WIN32ERROR (*psCliprdrServerUnlockClipboardData)(CliprdrServerContext* context, CLIPRDR_UNLOCK_CLIPBOARD_DATA* unlockClipboardData);
|
|
typedef WIN32ERROR (*psCliprdrClientFormatDataRequest)(CliprdrServerContext* context, CLIPRDR_FORMAT_DATA_REQUEST* formatDataRequest);
|
|
typedef WIN32ERROR (*psCliprdrServerFormatDataRequest)(CliprdrServerContext* context, CLIPRDR_FORMAT_DATA_REQUEST* formatDataRequest);
|
|
typedef WIN32ERROR (*psCliprdrClientFormatDataResponse)(CliprdrServerContext* context, CLIPRDR_FORMAT_DATA_RESPONSE* formatDataResponse);
|
|
typedef WIN32ERROR (*psCliprdrServerFormatDataResponse)(CliprdrServerContext* context, CLIPRDR_FORMAT_DATA_RESPONSE* formatDataResponse);
|
|
typedef WIN32ERROR (*psCliprdrClientFileContentsRequest)(CliprdrServerContext* context, CLIPRDR_FILE_CONTENTS_REQUEST* fileContentsRequest);
|
|
typedef WIN32ERROR (*psCliprdrServerFileContentsRequest)(CliprdrServerContext* context, CLIPRDR_FILE_CONTENTS_REQUEST* fileContentsRequest);
|
|
typedef WIN32ERROR (*psCliprdrClientFileContentsResponse)(CliprdrServerContext* context, CLIPRDR_FILE_CONTENTS_RESPONSE* fileContentsResponse);
|
|
typedef WIN32ERROR (*psCliprdrServerFileContentsResponse)(CliprdrServerContext* context, CLIPRDR_FILE_CONTENTS_RESPONSE* fileContentsResponse);
|
|
|
|
struct _cliprdr_server_context
|
|
{
|
|
void* handle;
|
|
void* custom;
|
|
|
|
psCliprdrOpen Open;
|
|
psCliprdrClose Close;
|
|
psCliprdrStart Start;
|
|
psCliprdrStop Stop;
|
|
psCliprdrGetEventHandle GetEventHandle;
|
|
psCliprdrCheckEventHandle CheckEventHandle;
|
|
|
|
psCliprdrServerCapabilities ServerCapabilities;
|
|
psCliprdrClientCapabilities ClientCapabilities;
|
|
psCliprdrMonitorReady MonitorReady;
|
|
psCliprdrTempDirectory TempDirectory;
|
|
psCliprdrClientFormatList ClientFormatList;
|
|
psCliprdrServerFormatList ServerFormatList;
|
|
psCliprdrClientFormatListResponse ClientFormatListResponse;
|
|
psCliprdrServerFormatListResponse ServerFormatListResponse;
|
|
psCliprdrClientLockClipboardData ClientLockClipboardData;
|
|
psCliprdrServerLockClipboardData ServerLockClipboardData;
|
|
psCliprdrClientUnlockClipboardData ClientUnlockClipboardData;
|
|
psCliprdrServerUnlockClipboardData ServerUnlockClipboardData;
|
|
psCliprdrClientFormatDataRequest ClientFormatDataRequest;
|
|
psCliprdrServerFormatDataRequest ServerFormatDataRequest;
|
|
psCliprdrClientFormatDataResponse ClientFormatDataResponse;
|
|
psCliprdrServerFormatDataResponse ServerFormatDataResponse;
|
|
psCliprdrClientFileContentsRequest ClientFileContentsRequest;
|
|
psCliprdrServerFileContentsRequest ServerFileContentsRequest;
|
|
psCliprdrClientFileContentsResponse ClientFileContentsResponse;
|
|
psCliprdrServerFileContentsResponse ServerFileContentsResponse;
|
|
|
|
rdpContext* rdpcontext;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
FREERDP_API CliprdrServerContext* cliprdr_server_context_new(HANDLE vcm);
|
|
FREERDP_API void cliprdr_server_context_free(CliprdrServerContext* context);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* FREERDP_CHANNEL_SERVER_CLIPRDR_H */
|