FreeRDP
Loading...
Searching...
No Matches
client/ainput.h
1
22#ifndef FREERDP_CHANNEL_AINPUT_CLIENT_AINPUT_H
23#define FREERDP_CHANNEL_AINPUT_CLIENT_AINPUT_H
24
25#include <winpr/assert.h>
26#include <freerdp/channels/ainput.h>
27
28#ifdef __cplusplus
29extern "C"
30{
31#endif
32
33 typedef UINT (*pcAInputSendInputEvent)(AInputClientContext* context, UINT64 flags, INT32 x,
34 INT32 y);
35
37 {
38 void* handle;
39 void* custom;
40
41 pcAInputSendInputEvent AInputSendInputEvent;
42 };
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif /* FREERDP_CHANNEL_AINPUT_CLIENT_AINPUT_H */