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. msvcp60.dll dependency

msvcp60.dll dependency

Scheduled Pinned Locked Moved C / C++ / MFC
c++question
2 Posts 2 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.
  • P Offline
    P Offline
    paulb
    wrote on last edited by
    #1

    I've been looking at a mass of spagetti code (which is supposedly an MFC app) from one the other monkeys here which for some reason has a dependency on msvcp60.dll. All our other MFC apps dont have this dependency - they only require mfc42.dll and msvcrt.dll - why this one?

    T 1 Reply Last reply
    0
    • P paulb

      I've been looking at a mass of spagetti code (which is supposedly an MFC app) from one the other monkeys here which for some reason has a dependency on msvcp60.dll. All our other MFC apps dont have this dependency - they only require mfc42.dll and msvcrt.dll - why this one?

      T Offline
      T Offline
      Toni78
      wrote on last edited by
      #2

      msvcp60 contains classes such as basic_filebuf, basic_ios, etc. that start with the word basic_ (those are the ones I recognize at least). Those are not the only things in the dll, there are a lot more functions and classes. Try to use dumpbin /exports to see all the functions that are being exported. I just had another idea. Remove msvcprt.lib (that's the library I believe) from the linker's options and you will get a bunch of errors telling you that you have external dependencies missing. That way you will be able to see what functions in the source code are linked to msvcp60.dll. I hope that makes sense.:) // Afterall, I realized that even my comment lines have bugs When one cannot invent, one must at least improve (in bed).-My latest fortune cookie

      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