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. HELP: how to load satellite DLL for a DLL

HELP: how to load satellite DLL for a DLL

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

    I have a Visual C++ workspace that has 2 projects (1 exe & 1 DLL). I used Serge Wautier's tutorial ( Resource DLLs and Language Selection Menu[^] ) to create (multi-language) resource DLLs (satellite DLLs) branching off the exe. Now I have a collection of strings in the DLL that are shared in other projects. I created a satellite DLL for that DLL but can't figure out how to load it on-demand just like the exe's satellite DLL. He used: HINSTANCE hDll = LoadLibrary(szFilename); AfxSetResourceHandle(hDll); void CLanguageSupport::UnloadResourceDll() { if (m_hDll!=NULL) { SetResourceHandle(AfxGetApp()->m_hInstance); // Restores the EXE as the resource container. FreeLibrary(m_hDll); m_hDll= NULL; } } etc etc for the unloading/loading satellite DLLs for the exe. but how to do the same for the DLL?

    A 1 Reply Last reply
    0
    • A andwan0

      I have a Visual C++ workspace that has 2 projects (1 exe & 1 DLL). I used Serge Wautier's tutorial ( Resource DLLs and Language Selection Menu[^] ) to create (multi-language) resource DLLs (satellite DLLs) branching off the exe. Now I have a collection of strings in the DLL that are shared in other projects. I created a satellite DLL for that DLL but can't figure out how to load it on-demand just like the exe's satellite DLL. He used: HINSTANCE hDll = LoadLibrary(szFilename); AfxSetResourceHandle(hDll); void CLanguageSupport::UnloadResourceDll() { if (m_hDll!=NULL) { SetResourceHandle(AfxGetApp()->m_hInstance); // Restores the EXE as the resource container. FreeLibrary(m_hDll); m_hDll= NULL; } } etc etc for the unloading/loading satellite DLLs for the exe. but how to do the same for the DLL?

      A Offline
      A Offline
      andwan0
      wrote on last edited by
      #2

      I think I got it working: From VC2005 there's a function called AddResourceInstance() to chain DLLs. However am still using VC6 so this function doesn't exist. So I just copied some code from a DLL project. The DLL main file contains these lines:

      static AFX_EXTENSION_MODULE NEAR extensionDLL = { NULL, NULL };
      DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
      {
      AfxInitExtensionModule(extensionDLL, hInstance);
      new CDynLinkLibrary(extensionDLL);
      }

      This dynamically loads the DLL. If we put some of this code into the EXE project like so:

      HINSTANCE hDll2 = LoadLibrary(szFilename2);
      AfxInitExtensionModule(extensionDLL,hDll2);
      new CDynLinkLibrary(extensionDLL);

      After the AfxSetResourceHandle(hDll); //setting satellite DLL overriding EXE resources Originally, the EXE would be the resource container, but AfxSetResourceHandle(satelliteDLL) will set loaded DLL as default resource container, overriding the EXE like. We use the above extension DLL to chain (add-on) another resource DLL. The only issues now is freeing the library/memory..

      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