CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2001
    Posts
    1,029

    multithreaded dll vs. multithreaded debug dll vs. single threaded, etc etc

    Hello all,

    When I build a static library (.lib) for release, what Runtime library setting should I use? Will someone that is developing an application say that is 'Debug Multi Threaded' by able to use my library if its runtime library setting is 'Multithreaded DLL" ? Or will I have to release multiple different version of my library that have different runtime library settings so its portable?

    Thanks!

  2. #2
    Join Date
    Sep 2001
    Location
    Victoria, BC, Canada
    Posts
    363
    Read the MSDN help. The only real difference between Multithreaded and Multithreaded DLL is how the MFC stuff is linked in. It's wither included staticaly or in a DLL.

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