FreeRDP
Loading...
Searching...
No Matches
wf_input.h
1
20#ifndef FREERDP_SERVER_WIN_INPUT_H
21#define FREERDP_SERVER_WIN_INPUT_H
22
23#include "wf_interface.h"
24
25BOOL wf_peer_keyboard_event(rdpInput* input, UINT16 flags, UINT8 code);
26BOOL wf_peer_unicode_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code);
27BOOL wf_peer_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y);
28BOOL wf_peer_extended_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y);
29
30// dummy versions
31BOOL wf_peer_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT8 code);
32BOOL wf_peer_unicode_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT16 code);
33BOOL wf_peer_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y);
34BOOL wf_peer_extended_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y);
35
36#endif /* FREERDP_SERVER_WIN_INPUT_H */