> Thanks for your help,
>
> 1. that means this command
> reg_drq_block_call_back = 0;
> is in Pascal
> reg_drq_block_call_back := nil;
>
> 2. if ( ! reg_drq_block_call_back )
> {
>...
> }
> is in Pascal
> if reg_drq_block_call_back = nil then
> begin
>
?
Lubomir Cabla
-Original Message-
From: Peter Vreman [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 19, 2004 8:41 AM
To: [EMAIL PROTECTED]
Subject: Re: [fpc-pascal]Convert C to Pascal
Pascal style:
type
REG_CMD_INFO = record
cmd : byte;
end;
reg_drq_block_call_back = pro
> Hallo,
>
> i know this is not exactly question to this maillist but
> maybe somebody could help me how can i convert only the following
> definition of "reg_drq_block_call_back" into FPC Pascal notation:
>
> void ( * reg_drq_block_call_back ) ( struct REG_CMD_INFO * );
>
> where definition is
>
>
Hallo,
i know this is not exactly question to this maillist but
maybe somebody could help me how can i convert only the following
definition of "reg_drq_block_call_back" into FPC Pascal notation:
void ( * reg_drq_block_call_back ) ( struct REG_CMD_INFO * );
where definition is
struct REG_CMD_IN