GetProcAddress_() does not work with current PB version because Unicode is always used.
This WinAPI function only works in ASCII mode.
Workarround:
Code: Select all
Import "kernel32.lib"
GetProcAddress(hModule, lpProcName.p-ascii)
EndImport
Can you always run GetProcAddress_() in ASCI mode, so you don't have to use the workaround code? Thank you