diff --git a/server/Windows/wf_input.c b/server/Windows/wf_input.c index 56cb6a7cc..7124f2049 100644 --- a/server/Windows/wf_input.c +++ b/server/Windows/wf_input.c @@ -166,18 +166,18 @@ void wf_peer_extended_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT1 } -void wf_peer_keyboard_event_dummy(rdpInput* input, uint16 flags, uint16 code) +void wf_peer_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT16 code) { } -void wf_peer_unicode_keyboard_event_dummy(rdpInput* input, uint16 flags, uint16 code) +void wf_peer_unicode_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT16 code) { } -void wf_peer_mouse_event_dummy(rdpInput* input, uint16 flags, uint16 x, uint16 y) +void wf_peer_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y) { } -void wf_peer_extended_mouse_event_dummy(rdpInput* input, uint16 flags, uint16 x, uint16 y) +void wf_peer_extended_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y) { } diff --git a/server/Windows/wf_input.h b/server/Windows/wf_input.h index f6a472dfb..d185f2bf9 100644 --- a/server/Windows/wf_input.h +++ b/server/Windows/wf_input.h @@ -28,9 +28,9 @@ void wf_peer_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y); void wf_peer_extended_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y); //dummy versions -void wf_peer_keyboard_event_dummy(rdpInput* input, uint16 flags, uint16 code); -void wf_peer_unicode_keyboard_event_dummy(rdpInput* input, uint16 flags, uint16 code); -void wf_peer_mouse_event_dummy(rdpInput* input, uint16 flags, uint16 x, uint16 y); -void wf_peer_extended_mouse_event_dummy(rdpInput* input, uint16 flags, uint16 x, uint16 y); +void wf_peer_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT16 code); +void wf_peer_unicode_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT16 code); +void wf_peer_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y); +void wf_peer_extended_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y); #endif /* WF_INPUT_H */