hedgewars/SDLh.pas
changeset 201 c9610ad20fef
parent 200 a36102728776
child 202 8603c0420461
equal deleted inserted replaced
200:a36102728776 201:c9610ad20fef
   108      PSDL_Color = ^TSDL_Color;
   108      PSDL_Color = ^TSDL_Color;
   109      TSDL_Color = record
   109      TSDL_Color = record
   110                   r: Byte;
   110                   r: Byte;
   111                   g: Byte;
   111                   g: Byte;
   112                   b: Byte;
   112                   b: Byte;
   113                   unused: Byte;
   113                   a: Byte;
   114                   end;
   114                   end;
   115 
   115 
   116      PSDL_RWops = ^TSDL_RWops;
   116      PSDL_RWops = ^TSDL_RWops;
   117      TSeek = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl;
   117      TSeek = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl;
   118      TRead = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; maxnum : LongInt ): LongInt;  cdecl;
   118      TRead = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; maxnum : LongInt ): LongInt;  cdecl;