Search found 1 match

by kurthum
Tue Aug 29, 2017 8:59 am
Forum: PDF-Tools SDK (all our PDF DLL Libraries)
Topic: PXCp_WriteDocumentW in Delphi Seattle 32 bit vs 64 bit
Replies: 2
Views: 6234

Re: PXCp_WriteDocumentW in Delphi Seattle 32 bit vs 64 bit

Hi,

I had the same problem with 64-bit version of PDF-Tools. The Delphi-code has the same problem as the .Net-declarations. The type for HPDF in PXC_40_Types.pas is wrong for 64-bit:
Type
HPDF = Cardinal;

For me changing to:
Type
HPDF = Pointer;
solved the problem

Regards
Kurt