Page 1 of 1

Error in SDK [Delphi]

Posted: Thu Oct 23, 2003 12:26 pm
by Serguei Tarassov
There are the errors in libgfl.pas file, line 230

Code: Select all

// For Eps
EpsDpi       : GFL_UINT16
EpsWidth     : GFL_INT32
EpsHeight    : GFL_INT32
This code produces the error
[Error] LibGfl.pas(232): Invalid compiler directive: 'EpsWidth'
...
So it should be corrected to

Code: Select all

EpsDpi       : GFL_UINT16;
EpsWidth     : GFL_INT32;
EpsHeight    : GFL_INT32;
Delphi 7, Win2000 Pro SP2

Re: Error in SDK (Delphi)

Posted: Thu Oct 23, 2003 2:01 pm
by xnview
Serguei Tarassov wrote:There are the errors in libgfl.pas file, line 230

Code: Select all

// For Eps
EpsDpi       : GFL_UINT16
EpsWidth     : GFL_INT32
EpsHeight    : GFL_INT32
This code produces the error
[Error] LibGfl.pas(232): Invalid compiler directive: 'EpsWidth'
...
So it should be corrected to

Code: Select all

EpsDpi       : GFL_UINT16;
EpsWidth     : GFL_INT32;
EpsHeight    : GFL_INT32;
Delphi 7, Win2000 Pro SP2
Ok, thanks. The new release v2.00 is soon available.
Pierre.