The type signatures for loadLibrary and loadLibraryEx now refer to HMODULE instead of HINSTANCE for consistency with the official Win32 API documentation. Note that HMODULE and HINSTANCE are both type synonyms for the same thing, so this only changes the presentation of these functions' type signatures, not their behavior.
Fixes #211.
Types of changes
[x] Bug fix (non-breaking change which fixes an issue)
[ ] New feature (non-breaking change which adds functionality)
[ ] Breaking change (fix or feature that would cause existing functionality to change)
Checklist:
[x] My code follows the code style of this project.
[ ] I have updated the documentation accordingly.
[x] I have not added a new Haskell dependency.
[x] I have included a changelog entry.
[x] I have not modified the version of the package in Win32.cabal.
The type signatures for
loadLibrary
andloadLibraryEx
now refer toHMODULE
instead ofHINSTANCE
for consistency with the official Win32 API documentation. Note thatHMODULE
andHINSTANCE
are both type synonyms for the same thing, so this only changes the presentation of these functions' type signatures, not their behavior.Fixes #211.
Types of changes
Checklist:
Win32.cabal
.