Closed
Description
It would be lovely if I could use this library on Windows, as my driver only comes in dll form.
I'm comfortable with the WinAPI and C, but cython is doing my head in.
Would a potential "easy" fix be using ctypes.dll.LoadLibrary
, since that's cross-platform? It seems like there might be some boilerplate behind the scenes to cast function types.
From what I can tell, the current method loads the symbols globally, which makes it "just work". I can't see any reference to the dll itself past the load
method.