hedgewars/SDLh.pas
changeset 4454 42bfc1a70968
parent 4380 b78638b36b89
child 4911 5d10bd725efe
--- a/hedgewars/SDLh.pas	Thu Dec 02 20:40:30 2010 -0500
+++ b/hedgewars/SDLh.pas	Sat Dec 04 08:52:57 2010 +0100
@@ -511,6 +511,17 @@
 {$ENDIF}
         end;
 
+    TSDL_UserEvent = record
+{$IFDEF SDL13}
+        type_: LongInt;
+        windowID: LongInt;
+{$ELSE}
+        type_: Byte;
+{$ENDIF}
+        code: LongInt;
+        data1, data2: Pointer;
+        end;
+
     PSDL_Event = ^TSDL_Event;
     TSDL_Event = record
 {$IFDEF SDL13}
@@ -531,6 +542,7 @@
             SDL_JOYBALLMOTION: (jball: TSDL_JoyBallEvent);
             SDL_JOYBUTTONDOWN,
             SDL_JOYBUTTONUP: (jbutton: TSDL_JoyButtonEvent);
+            SDL_USEREVENT: (user: TSDL_UserEvent);
 {$ELSE}
         case Byte of
             SDL_NOEVENT: (type_: byte);