Code: Select all
// For Eps
EpsDpi : GFL_UINT16
EpsWidth : GFL_INT32
EpsHeight : GFL_INT32
[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;