Skip to content

Commit

Permalink
libxmlsec.pas fix for using with 64-bit VS compiled xmlsec library
Browse files Browse the repository at this point in the history
  • Loading branch information
mirus77 committed Jul 31, 2017
1 parent 796acc3 commit f3abeb9
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 0 deletions.
Binary file added bin64/libeay32.dll
Binary file not shown.
Binary file added bin64/libexslt.dll
Binary file not shown.
Binary file added bin64/libiconv.dll
Binary file not shown.
Binary file added bin64/libxml2.dll
Binary file not shown.
Binary file added bin64/libxmlsec-mscrypto.dll
Binary file not shown.
Binary file added bin64/libxmlsec-openssl.dll
Binary file not shown.
Binary file added bin64/libxmlsec.dll
Binary file not shown.
Binary file added bin64/libxslt.dll
Binary file not shown.
Binary file added bin64/ssleay32.dll
Binary file not shown.
5 changes: 5 additions & 0 deletions include/xmlsec/libxmlsec.pas
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ interface
{$ELSE}
time_t = Int64;
{$ENDIF}
{$IFDEF WIN32}
xmlSecSize = Cardinal;
{$ENDIF}
{$IFDEF WIN64}
xmlSecSize = UInt64;
{$ENDIF}
xmlSecSizePtr = ^xmlSecSize;
xmlSecByte = Byte;
xmlSecBytePtr = ^xmlSecByte;
Expand Down

0 comments on commit f3abeb9

Please sign in to comment.