help
-
help at the time of compiling this error appears at the end
by compiling visual studio 2013 through the makefile.vc<pre lang="vb">fba_ggpo.o : error LNK2001: símbolos externos indefinidos "bool __cdecl VidSSetQuarkConnectStatus(wchar_t const *)" (?VidSSetQuarkConnectStatus@@YA_NPB_W@Z)
fba_ggpo.o : error LNK2001: símbolos externos indefinidos "int __cdecl VidSSetQuarkShowLogo(bool)" (?VidSSetQuarkShowLogo@@YAH_N@Z)
fba_ggpo.o : error LNK2001: símbolos externos indefinidos "int nAcbVersion" (?nAcbVersion@@3HA)
</pre> -
help at the time of compiling this error appears at the end
by compiling visual studio 2013 through the makefile.vc<pre lang="vb">fba_ggpo.o : error LNK2001: símbolos externos indefinidos "bool __cdecl VidSSetQuarkConnectStatus(wchar_t const *)" (?VidSSetQuarkConnectStatus@@YA_NPB_W@Z)
fba_ggpo.o : error LNK2001: símbolos externos indefinidos "int __cdecl VidSSetQuarkShowLogo(bool)" (?VidSSetQuarkShowLogo@@YAH_N@Z)
fba_ggpo.o : error LNK2001: símbolos externos indefinidos "int nAcbVersion" (?nAcbVersion@@3HA)
</pre>That error is telling you that the linker cannot find the implementations of the three functions named in the error messages. See: LNK2001[^] Are you calling functions that you haven't implemented? This error can happen if you include a header (.h) file without also having the implementation (.cpp) file as part of the project.
The difficult we do right away... ...the impossible takes slightly longer.
-
help at the time of compiling this error appears at the end
by compiling visual studio 2013 through the makefile.vc<pre lang="vb">fba_ggpo.o : error LNK2001: símbolos externos indefinidos "bool __cdecl VidSSetQuarkConnectStatus(wchar_t const *)" (?VidSSetQuarkConnectStatus@@YA_NPB_W@Z)
fba_ggpo.o : error LNK2001: símbolos externos indefinidos "int __cdecl VidSSetQuarkShowLogo(bool)" (?VidSSetQuarkShowLogo@@YAH_N@Z)
fba_ggpo.o : error LNK2001: símbolos externos indefinidos "int nAcbVersion" (?nAcbVersion@@3HA)
</pre> -
That error is telling you that the linker cannot find the implementations of the three functions named in the error messages. See: LNK2001[^] Are you calling functions that you haven't implemented? This error can happen if you include a header (.h) file without also having the implementation (.cpp) file as part of the project.
The difficult we do right away... ...the impossible takes slightly longer.
Thanks buddy that was the error