Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. help

help

Scheduled Pinned Locked Moved C / C++ / MFC
helpcsharpvisual-studioquestion
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    robsons2007
    wrote on last edited by
    #1

    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>

    Richard Andrew x64R L 2 Replies Last reply
    0
    • R robsons2007

      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>

      Richard Andrew x64R Offline
      Richard Andrew x64R Offline
      Richard Andrew x64
      wrote on last edited by
      #2

      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.

      R 1 Reply Last reply
      0
      • R robsons2007

        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>

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #3

        You have most likely failed to include the library that contains these functions. Check your project settings.

        1 Reply Last reply
        0
        • Richard Andrew x64R Richard Andrew x64

          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.

          R Offline
          R Offline
          robsons2007
          wrote on last edited by
          #4

          Thanks buddy that was the error

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups