hedgewars/SDLh.pas
changeset 7565 00568d3054d0
parent 7278 000e4543f204
parent 7546 b50556f2a0e8
child 8022 10b3b93c1f56
child 8026 4a4f21070479
equal deleted inserted replaced
7544:a72ace943bfd 7565:00568d3054d0
   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;