Thread: dll placement

  1. #1
    Registered User ~Kyo~'s Avatar
    Join Date
    Jun 2004
    Posts
    320

    dll placement

    What is the difference between placing a .dll in windows\system32 and windows\system? To my understanding if you put a .dll in the root directory of a program it will use that one by default. I just got to thinking about this there must be some reason why windows has multiple directories for .dlls any ideas?

  2. #2
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    As far as I know windows\system is for old legacy 16-bit drivers and dlls. Windows32 is for 32-bit stuff and that got introduced with Windows NT 3.1. The separation is made I believe to support a 16-bit layer for legacy software that one wants to run on newer machines and not have their DLLs or drivers conflict with the 32-bit ones.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  3. #3
    Registered User
    Join Date
    Jan 2010
    Posts
    412
    And to make things even more confusing..
    On 64-bit windows system32 is used for 64-bit dlls, and 32-bit dlls are in syswow64.
    And a 32-bit application which tries to load a dll from system32 gets transparently redirected to syswow64, where as a 64-bit application gets access to the real system32 dir.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. TabControlEx and dll placement
    By scott_ill in forum C# Programming
    Replies: 3
    Last Post: 09-01-2009, 09:54 AM
  2. non-MFC DLL with MFC app question.
    By Kempelen in forum Windows Programming
    Replies: 10
    Last Post: 08-20-2008, 07:11 AM
  3. dll communicating between each other
    By cloudy in forum C++ Programming
    Replies: 5
    Last Post: 06-17-2005, 02:20 AM
  4. DLL and std::string woes!
    By Magos in forum C++ Programming
    Replies: 7
    Last Post: 09-08-2004, 12:34 PM
  5. .lib vs .h vs .dll
    By Shadow12345 in forum C++ Programming
    Replies: 13
    Last Post: 01-01-2003, 05:29 AM

Tags for this Thread