hedgewars/SDLh.pas
changeset 7546 b50556f2a0e8
parent 7237 1bbe31e0d707
child 7565 00568d3054d0
equal deleted inserted replaced
7545:063601290761 7546:b50556f2a0e8
   408         end;
   408         end;
   409 
   409 
   410 
   410 
   411     PSDL_Color = ^TSDL_Color;
   411     PSDL_Color = ^TSDL_Color;
   412     TSDL_Color = record
   412     TSDL_Color = record
   413         case Byte of
   413             r: Byte;
   414             0: ( r: Byte;
   414             g: Byte;
   415                  g: Byte;
   415             b: Byte;
   416                  b: Byte;
   416             unused: Byte;
   417                  unused: Byte; );
       
   418             1: ( value: LongWord; );
       
   419         end;
   417         end;
   420 
   418 
   421 
   419 
   422     PSDL_RWops = ^TSDL_RWops;
   420     PSDL_RWops = ^TSDL_RWops;
   423     TSeek  = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl;
   421     TSeek  = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl;