xmlsq  1.0.0
The C++ (STL) interface to Xmlsq.

An interface to diXmlsq.dll for C++ programmers using STL.Requires xmlsq to be installed on your system, available from https://www.cryptosys.net/xmlsq/. In particular that diXmlsq.dll is in your library path.

Required files to compile in a C++ project:

xmlsq.hpp
diXmlsq.h
xmlsq.cpp
#include "diXmlsq.h"
#include "xmlsq.hpp"
{main}.cpp
#include "xmlsq.hpp"
int main() { ... }
The C++ (STL) interface to Xmlsq.

You must link to diXmlsq.lib. In MSVC++ IDE, use Project > Properties > Linker > Input > Additional Dependencies and add the full path to diXmlsq.lib. E.g.

Additional Dependencies = $(OutDir)diXmlsq.lib;%(AdditionalDependencies)

Using the command-line with MSVC:

CL test.cpp xmlsq.cpp /link ..\Debug\diXmlsq.lib

Using GCC (make sure the DLL has been compiled for target X64):

g++ -std=c++11 test.cpp xmlsq.cpp "C:\fullpath\to\x64\Debug\diXmlsq.lib"
Copyright © 2020-21 D.I. Management Services Pty Limited ABN 78 083 210 584 Australia. All rights reserved. <www.di-mgt.com.au> <www.cryptosys.net>. Generated on Fri Jul 16 2021 22:03:10 by Doxygen 1.9.1.