Error in SDK [Delphi]

Discussions on GFL SDK, the graphic library for reading and writing graphic files

Moderators: XnTriq, helmut, xnview

Post Reply
Serguei Tarassov

Error in SDK [Delphi]

Post 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
User avatar
xnview
Author of XnView
Posts: 43601
Joined: Mon Oct 13, 2003 7:31 am
Location: France
Contact:

Re: Error in SDK (Delphi)

Post 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.
Post Reply