CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Unresolved external symbs

    Quote Originally Posted by night2dark2 View Post
    I know for a fact, I'm linking against ZEngine.lib,
    Unless we have your project, we can't verify this for ourselves. Right now, we don't know if you made a mistake or not. None of what you posted proves anything as to whether you're doing things correctly when it comes to linker settings.
    Is it possible that VC went explode() with my function names?
    No, the problem is usually

    1) you didn't include that library in your linker settings,

    or

    2) if it's C++ templates involved, you instantiated a template, and the implementation for that template is not available.

    Regards,

    Paul McKenzie
    Last edited by Paul McKenzie; March 6th, 2011 at 07:08 PM.

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