This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients amaury.forgeotdarc, belopolsky, eryksun, giampaolo.rodola, meador.inge, theller
Date 2017-05-06.02:48:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1494038910.93.0.229542195329.issue30286@psf.upfronthosting.co.za>
In-reply-to
Content
It's documented that the default conversion for integer arguments is a 32-bit C int, which is also the default for result types. Whenever pointers (and Windows handles, which are sometimes 64-bit pointers, such as HMODULE values) are passed as arguments, integer values either need to be manually wrapped as ctypes pointer instances, or you need to set the function's argtypes to override the default behavior. Whenever a pointer is returned, you must set the function's restype.

BTW, _ctypes.FreeLibrary and _ctypes.dlclose already exist as built-in functions. They're just not imported to the main ctypes namespace, most likely because there's nothing in the design to prevent crashing Python if the shared library's reference count drops to 0 and the loader unmaps it from the process while there's remaining references to its address range. 

Also, I recommend using ctypes.WinDLL and avoiding ctypes.windll, especially for common Windows APIs. It caches libraries, which cache function pointer instances. What if my library also uses it and customizes FreeLibrary.argtypes or FreeLibrary.errcheck in a way that breaks yours? It also doesn't allow setting use_last_error=True to capture the last error value in a thread-local variable that can be accessed via ctypes.get_last_error() and ctypes.set_last_error(). Capturing the last error value is a good idea in a high-level language like Python -- especially when working interactively in the REPL. This way ctypes.WinError(ctypes.get_last_error()) will reliable create an exception for whatever the error value was for the last FFI call.
History
Date User Action Args
2017-05-06 02:48:31eryksunsetrecipients: + eryksun, theller, amaury.forgeotdarc, belopolsky, giampaolo.rodola, meador.inge
2017-05-06 02:48:30eryksunsetmessageid: <1494038910.93.0.229542195329.issue30286@psf.upfronthosting.co.za>
2017-05-06 02:48:30eryksunlinkissue30286 messages
2017-05-06 02:48:30eryksuncreate