diff -r 15a483b2558a -r 42bfc1a70968 hedgewars/SDLh.pas --- 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);