Blame channels/rdpdr/server/rdpdr_main.h

Packit 1fb8d4
/**
Packit 1fb8d4
 * FreeRDP: A Remote Desktop Protocol Implementation
Packit 1fb8d4
 * Device Redirection Virtual Channel Extension
Packit 1fb8d4
 *
Packit 1fb8d4
 * Copyright 2014 Dell Software <Mike.McDonald@software.dell.com>
Packit 1fb8d4
 * Copyright 2013 Marc-Andre Moreau <marcandre.moreau@gmail.com>
Packit 1fb8d4
 * Copyright 2015 Thincast Technologies GmbH
Packit 1fb8d4
 * Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
Packit 1fb8d4
 *
Packit 1fb8d4
 * Licensed under the Apache License, Version 2.0 (the "License");
Packit 1fb8d4
 * you may not use this file except in compliance with the License.
Packit 1fb8d4
 * You may obtain a copy of the License at
Packit 1fb8d4
 *
Packit 1fb8d4
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit 1fb8d4
 *
Packit 1fb8d4
 * Unless required by applicable law or agreed to in writing, software
Packit 1fb8d4
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit 1fb8d4
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit 1fb8d4
 * See the License for the specific language governing permissions and
Packit 1fb8d4
 * limitations under the License.
Packit 1fb8d4
 */
Packit 1fb8d4
Packit 1fb8d4
#ifndef FREERDP_CHANNEL_RDPDR_SERVER_MAIN_H
Packit 1fb8d4
#define FREERDP_CHANNEL_RDPDR_SERVER_MAIN_H
Packit 1fb8d4
Packit 1fb8d4
#include <winpr/collections.h>
Packit 1fb8d4
#include <winpr/crt.h>
Packit 1fb8d4
#include <winpr/synch.h>
Packit 1fb8d4
#include <winpr/thread.h>
Packit 1fb8d4
Packit 1fb8d4
#include <freerdp/settings.h>
Packit 1fb8d4
#include <freerdp/server/rdpdr.h>
Packit 1fb8d4
Packit 1fb8d4
struct _rdpdr_server_private
Packit 1fb8d4
{
Packit 1fb8d4
	HANDLE Thread;
Packit 1fb8d4
	HANDLE StopEvent;
Packit 1fb8d4
	void* ChannelHandle;
Packit 1fb8d4
Packit 1fb8d4
	UINT32 ClientId;
Packit 1fb8d4
	UINT16 VersionMajor;
Packit 1fb8d4
	UINT16 VersionMinor;
Packit 1fb8d4
	char* ClientComputerName;
Packit 1fb8d4
Packit 1fb8d4
	BOOL UserLoggedOnPdu;
Packit 1fb8d4
Packit 1fb8d4
	wListDictionary* IrpList;
Packit 1fb8d4
	UINT32 NextCompletionId;
Packit 1fb8d4
};
Packit 1fb8d4
Packit Service 5a9772
#define RDPDR_HEADER_LENGTH 4
Packit 1fb8d4
Packit 1fb8d4
struct _RDPDR_HEADER
Packit 1fb8d4
{
Packit 1fb8d4
	UINT16 Component;
Packit 1fb8d4
	UINT16 PacketId;
Packit 1fb8d4
};
Packit 1fb8d4
typedef struct _RDPDR_HEADER RDPDR_HEADER;
Packit 1fb8d4
Packit Service 5a9772
#define RDPDR_VERSION_MAJOR 0x0001
Packit 1fb8d4
Packit Service 5a9772
#define RDPDR_VERSION_MINOR_RDP50 0x0002
Packit Service 5a9772
#define RDPDR_VERSION_MINOR_RDP51 0x0005
Packit Service 5a9772
#define RDPDR_VERSION_MINOR_RDP52 0x000A
Packit Service 5a9772
#define RDPDR_VERSION_MINOR_RDP6X 0x000C
Packit 1fb8d4
Packit Service 5a9772
#define RDPDR_CAPABILITY_HEADER_LENGTH 8
Packit 1fb8d4
Packit 1fb8d4
struct _RDPDR_CAPABILITY_HEADER
Packit 1fb8d4
{
Packit 1fb8d4
	UINT16 CapabilityType;
Packit 1fb8d4
	UINT16 CapabilityLength;
Packit 1fb8d4
	UINT32 Version;
Packit 1fb8d4
};
Packit 1fb8d4
typedef struct _RDPDR_CAPABILITY_HEADER RDPDR_CAPABILITY_HEADER;
Packit 1fb8d4
Packit 1fb8d4
struct _RDPDR_IRP
Packit 1fb8d4
{
Packit 1fb8d4
	UINT32 CompletionId;
Packit 1fb8d4
	UINT32 DeviceId;
Packit 1fb8d4
	UINT32 FileId;
Packit 1fb8d4
	char PathName[256];
Packit 1fb8d4
	char ExtraBuffer[256];
Packit Service 5a9772
	void* CallbackData;
Packit Service 5a9772
	UINT(*Callback)
Packit Service 5a9772
	(RdpdrServerContext* context, wStream* s, struct _RDPDR_IRP* irp, UINT32 deviceId,
Packit Service 5a9772
	 UINT32 completionId, UINT32 ioStatus);
Packit 1fb8d4
};
Packit 1fb8d4
typedef struct _RDPDR_IRP RDPDR_IRP;
Packit 1fb8d4
Packit 1fb8d4
#endif /* FREERDP_CHANNEL_RDPDR_SERVER_MAIN_H */