This demonstrates a non-trivial example of wrapping a C++ dll with Cython. It will cover the following main steps:
Create an example DLL with C++ using Visual Studio.
Wrap the DLL with Cython so that it may be called in Python.
It is assumed that you have Cython installed and can successfully...