wfreerdp-server: fixed compilation

This commit is contained in:
Corey C 2012-10-11 18:15:34 -04:00
parent 0905ae6f1f
commit 9e2b53a72b
2 changed files with 8 additions and 8 deletions

View File

@ -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)
{
}

View File

@ -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 */