Hi,
I am tying to Cythonize a 3rd party DLL with a C API. I don't have a lib file for it.
To simplify, I've created the following example with a single `add` function.
I've compiled addlib.cpp with the command line:
`cl.exe /D ADDLIB_EXPORTS addlib.cpp /link /DLL /OUT:addlib.dll`
Then I've deleted the cpp file and ran setup.py:
`python setup.py build_ext --inplace`
It compiles and builds successfully using the lib file and `addlib_test.py` does work.
How can I do the same without the lib file ?
Best regards,
Idan