by Wolf Behrenhoff <NoSpamPleaseButThisIsValid3@[EMAIL PROTECTED]
>
Jul 6, 2007 at 02:07 PM
prino schrieb:
> What's this
>
> char *rec;
>
> in Pascal?
>
> Am I right to assume that it's
>
> var rec: ^char?
Yes,
var rec: PChar;
PChar is defined as "type PChar = ^Char"
> And what's the translation of the following function header:
>
> char *assocmem(int memttr) {...}
function assocmem(memttr: Integer): PChar;
Wolf