Re: iTunes Visual Plugin SDK -- How can I convert the headers to Delphi?



jklimek@xxxxxxxxx wrote:

For example, how the heck does convert from C to Delphi:
  typedef	unsigned char	UInt8;
  typedef signed char		SInt8;
  typedef UInt8			Str255[256];
  typedef UInt8			Str63[64];

I'd try

type
  UInt8=char;
  SInt8=Shortint;
  Str255=Array[0..255] of UInt8;
  Str63=Array[0..63] of UInt8;
.