freerdp: get rid of old types

This commit is contained in:
Marc-André Moreau
2012-10-09 03:26:39 -04:00
parent 1bf8a45519
commit 9d064171a7
265 changed files with 3634 additions and 3668 deletions

View File

@@ -37,13 +37,13 @@
#define RDP_CLIENT_INPUT_PDU_HEADER_LENGTH 4
void input_send_synchronize_event(rdpInput* input, uint32 flags);
void input_send_synchronize_event(rdpInput* input, UINT32 flags);
void input_send_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code);
void input_send_unicode_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code);
void input_send_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y);
void input_send_extended_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y);
void input_send_fastpath_synchronize_event(rdpInput* input, uint32 flags);
void input_send_fastpath_synchronize_event(rdpInput* input, UINT32 flags);
void input_send_fastpath_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code);
void input_send_fastpath_unicode_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code);
void input_send_fastpath_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y);