We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
packer-tutorial/part2/main.c
Line 131 in b2e90ac
According to the msdn : "If this parameter is an ordinal value, it must be in the low-order word; the high-order word must be zero.", cf. https://docs.microsoft.com/fr-fr/windows/win32/api/libloaderapi/nf-libloaderapi-getprocaddress
This line should be : function_handle = (LPVOID)GetProcAddress(import_module, (LPSTR)IMAGE_ORDINAL32(lookup_addr));
function_handle = (LPVOID)GetProcAddress(import_module, (LPSTR)IMAGE_ORDINAL32(lookup_addr));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
packer-tutorial/part2/main.c
Line 131 in b2e90ac
According to the msdn : "If this parameter is an ordinal value, it must be in the low-order word; the high-order word must be zero.", cf. https://docs.microsoft.com/fr-fr/windows/win32/api/libloaderapi/nf-libloaderapi-getprocaddress
This line should be :
function_handle = (LPVOID)GetProcAddress(import_module, (LPSTR)IMAGE_ORDINAL32(lookup_addr));
The text was updated successfully, but these errors were encountered: