From 9e2b53a72b3f9a9105e49110c8a7e5dd91a2d9cc Mon Sep 17 00:00:00 2001 From: Corey C Date: Thu, 11 Oct 2012 18:15:34 -0400 Subject: [PATCH] wfreerdp-server: fixed compilation --- server/Windows/wf_input.c | 8 ++++---- server/Windows/wf_input.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) 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 */