CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2017
    Location
    Switzerland, Wallisellen
    Posts
    14

    Unresolved external symbol since migration to_X64

    Visual Studio 2015

    Unresolved external symbol since migration to_X64

    Our Dll has Error LNK2001 unresolved external symbol _DllRegisterServer@0 error since we did the Migration To X64

    we need this function for registration with regsv32 therefore we want to export this function with

    # pragma comment(linker, "/EXPORTllRegisterServer=_DllRegisterServer@0,PRIVATE")


    how can it be that we have the unresolved exernal Symbol after migration to X64 which worked for X86 with the same code

  2. #2
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,822

    Re: Unresolved external symbol since migration to_X64

    has the .dll been built for x64?
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  3. #3
    Join Date
    Nov 2003
    Location
    Belgium
    Posts
    8,150

    Re: Unresolved external symbol since migration to_X64

    That pragma should not be necessary I think.
    Can you post your DllRegisterServer code?
    Marc Gregoire - NuonSoft (http://www.nuonsoft.com)
    My Blog
    Wallpaper Cycler 3.5.0.97

    Author of Professional C++, 4th Edition by Wiley/Wrox (includes C++17 features)
    ISBN: 978-1-119-42130-6
    [ http://www.facebook.com/professionalcpp ]

  4. #4
    Join Date
    Nov 2003
    Location
    Belgium
    Posts
    8,150

    Re: Unresolved external symbol since migration to_X64

    A quick search brought me to: https://stackoverflow.com/questions/...esolved-smbols
    There they say to remove the pragmas.
    Marc Gregoire - NuonSoft (http://www.nuonsoft.com)
    My Blog
    Wallpaper Cycler 3.5.0.97

    Author of Professional C++, 4th Edition by Wiley/Wrox (includes C++17 features)
    ISBN: 978-1-119-42130-6
    [ http://www.facebook.com/professionalcpp ]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured