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
Getting multiple errors below when compiling in stock up-to-date Kali Linux:
src/hooks/../native.h:21723:1: error: ‘SetProcessValidCallTargets’ redeclared without dllimport attribute: previous dllimport ignored [-Werror=attributes]
Resolved with copying over extra declaration found in Mingw's include files:
diff --git a/src/native.h b/src/native.h index d74ce7f..1846046 100644 --- a/src/native.h +++ b/src/native.h @@ -21718,6 +21718,7 @@ typedef struct _CFG_CALL_TARGET_INFO { } CFG_CALL_TARGET_INFO, *PCFG_CALL_TARGET_INFO; #endif +WINBASEAPI WINBOOL WINAPI SetProcessValidCallTargets(
No idea if it is a bug or something with my setup, so sharing just in case.
The text was updated successfully, but these errors were encountered:
Came across the same error on Kali as well. Thanks for the tip. Essentially add WINBASEAPI on line 21721 within AceLdr-main/src/native.h
WINBASEAPI
AceLdr-main/src/native.h
Sorry, something went wrong.
Thanks for the tip @s1lvershad0w. #16
No branches or pull requests
Getting multiple errors below when compiling in stock up-to-date Kali Linux:
Resolved with copying over extra declaration found in Mingw's include files:
No idea if it is a bug or something with my setup, so sharing just in case.
The text was updated successfully, but these errors were encountered: