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
Im using VS2017, plattform toolset 141, and im getting:
LNK2001 unresolved external symbol ___acrt_iob_func DoubleAgentDll & LNK2001 unresolved external symbol ___stdio_common_vfwprintf DoubleAgentDll
LNK2001 unresolved external symbol ___acrt_iob_func DoubleAgentDll
LNK2001 unresolved external symbol ___stdio_common_vfwprintf DoubleAgentDll
when trying to use (VOID)wprintf(); or any other print function after including stdio.h in the DoubleAgentDll.
(VOID)wprintf();
The text was updated successfully, but these errors were encountered:
You need to link against the C Standard Library.
1. Project Properties -> Linker -> General -> Ignore All Default Libraries = Inherit from parent or project defaults 2. Project Properties -> Linker -> Advanced -> Entry Point = Inherit from parent or project defaults
1. Project Properties -> Linker -> General -> Ignore All Default Libraries = Inherit from parent or project defaults
2. Project Properties -> Linker -> Advanced -> Entry Point = Inherit from parent or project defaults
Note that linking against external libraries (except ntdll.dll) might cause problems on some versions of Windows (Specifically Windows 7).
Sorry, something went wrong.
No branches or pull requests
Im using VS2017, plattform toolset 141, and im getting:
LNK2001 unresolved external symbol ___acrt_iob_func DoubleAgentDll
&
LNK2001 unresolved external symbol ___stdio_common_vfwprintf DoubleAgentDll
when trying to use
(VOID)wprintf();
or any other print function after including stdio.h in the DoubleAgentDll.The text was updated successfully, but these errors were encountered: