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