@@ -573,14 +573,14 @@ type
573573 * Checks to see if certain event types are in the event queue.
574574 *}
575575
576- function SDL_HasEvent (evType : TSDL_EventType): TSDL_Bool cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_HasEvent' { $ENDIF} { $ENDIF} ;
576+ function SDL_HasEvent (type_ : TSDL_EventType): TSDL_Bool cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_HasEvent' { $ENDIF} { $ENDIF} ;
577577 function SDL_HasEvents (minType, maxType: TSDL_EventType): TSDL_Bool cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_HasEvents' { $ENDIF} { $ENDIF} ;
578578
579579 { **
580580 * This function clears events from the event queue
581581 *}
582582
583- procedure SDL_FlushEvent (evType : TSDL_EventType) cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_FlushEvent' { $ENDIF} { $ENDIF} ;
583+ procedure SDL_FlushEvent (type_ : TSDL_EventType) cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_FlushEvent' { $ENDIF} { $ENDIF} ;
584584 procedure SDL_FlushEvents (minType, maxType: TSDL_EventType) cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_FlushEvents' { $ENDIF} { $ENDIF} ;
585585
586586 { **
629629type
630630 PSDL_EventFilter = ^TSDL_EventFilter;
631631 { $IFNDEF GPC}
632- TSDL_EventFilter = function( userdata: Pointer; event: PSDL_Event ): Integer; cdecl;
632+ TSDL_EventFilter = function(userdata: Pointer; event: PSDL_Event): Integer; cdecl;
633633 { $ELSE}
634634 TSDL_EventFilter = function( userdata: Pointer; event: PSDL_Event ): Integer;
635635 { $ENDIF}
@@ -700,9 +700,9 @@ const
700700 * current processing state of the specified event.
701701 *}
702702
703- function SDL_EventState (evType : TSDL_EventType; state: SInt32): UInt8 cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_EventState' { $ENDIF} { $ENDIF} ;
703+ function SDL_EventState (type_ : TSDL_EventType; state: SInt32): UInt8 cdecl; external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_EventState' { $ENDIF} { $ENDIF} ;
704704
705- function SDL_GetEventState (evType : TSDL_EventType): UInt8;
705+ function SDL_GetEventState (type_ : TSDL_EventType): UInt8;
706706
707707 { **
708708 * This function allocates a set of user-defined events, and returns
0 commit comments