Compatibility reordering of new symbols in struct
authorakallabeth <akallabeth@posteo.net>
Wed, 24 Feb 2021 06:23:54 +0000 (07:23 +0100)
committerakallabeth <akallabeth@users.noreply.github.com>
Thu, 25 Feb 2021 08:51:41 +0000 (09:51 +0100)
include/freerdp/server/rdpei.h

index 8413351..844f53f 100644 (file)
@@ -42,10 +42,11 @@ struct _rdpei_server_context
        /** callbacks that can be set by the user */
        UINT (*onClientReady)(RdpeiServerContext* context);
        UINT (*onTouchEvent)(RdpeiServerContext* context, const RDPINPUT_TOUCH_EVENT* touchEvent);
-       UINT (*onPenEvent)(RdpeiServerContext* context, const RDPINPUT_PEN_EVENT* penEvent);
        UINT (*onTouchReleased)(RdpeiServerContext* context, BYTE contactId);
 
        void* user_data; /* user data, useful for callbacks */
+
+       UINT (*onPenEvent)(RdpeiServerContext* context, const RDPINPUT_PEN_EVENT* penEvent);
 };
 
 #ifdef __cplusplus