equal
deleted
inserted
replaced
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; |