cloudmatrix / esky

an auto-update framework for frozen python apps
BSD 3-Clause "New" or "Revised" License
362 stars 74 forks source link

Fix GetModuleFileNameA to understand that its first param is a HMODULE. #59

Closed RobinD42 closed 10 years ago

RobinD42 commented 10 years ago

This is needed because on a 64-bit build of Python on Windows the handles may be 8-byte values (a void*) but the ctypes default is to assume int, which is only 4 bytes.

rfk commented 10 years ago

Great, thank you!