ainput.h (1293B)
1/** 2 * FreeRDP: A Remote Desktop Protocol Implementation 3 * Display Update Virtual Channel Extension 4 * 5 * Copyright 2013 Marc-Andre Moreau <marcandre.moreau@gmail.com> 6 * Copyright 2015 Thincast Technologies GmbH 7 * Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com> 8 * 9 * Licensed under the Apache License, Version 2.0 (the "License"); 10 * you may not use this file except in compliance with the License. 11 * You may obtain a copy of the License at 12 * 13 * http://www.apache.org/licenses/LICENSE-2.0 14 * 15 * Unless required by applicable law or agreed to in writing, software 16 * distributed under the License is distributed on an "AS IS" BASIS, 17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 * See the License for the specific language governing permissions and 19 * limitations under the License. 20 */ 21 22#ifndef FREERDP_CHANNEL_AINPUT_CLIENT_AINPUT_H 23#define FREERDP_CHANNEL_AINPUT_CLIENT_AINPUT_H 24 25#include <freerdp/channels/ainput.h> 26 27typedef UINT (*pcAInputSendInputEvent)(AInputClientContext* context, UINT64 flags, INT32 x, 28 INT32 y); 29 30struct ainput_client_context 31{ 32 void* handle; 33 void* custom; 34 35 pcAInputSendInputEvent AInputSendInputEvent; 36}; 37 38#endif /* FREERDP_CHANNEL_AINPUT_CLIENT_AINPUT_H */