Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7670217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:46:17+00:00 2026-05-31T15:46:17+00:00

Is it possible to embed an external CLI/C++ DLL into a MFC EXE as

  • 0

Is it possible to embed an external CLI/C++ DLL into a MFC EXE as a embedded resource or something like that? My application currently connects to DLL sitting right beside it that has some basic functions like connect to database, pull information from DB, etc..

I use LoadLibrary to use the DLL functions. Then I secure my EXE with themida and pack the EXE and DLL together. The problem is though to pack the DLL and EXE I have to disable file patching in themida which is a very strong feature. I have to disable it because when I pack my EXE it needs to modify the file a bit, and then themida thinks it has been cracked or something and does not allow the application to work.

So is there a way to embed this DLL into my EXE? The DLL is not compatible with themida sadly which is why it is a separate file.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:46:18+00:00Added an answer on May 31, 2026 at 3:46 pm

    1) Add a Resource Script file in the executable project.

    IDR_DLL_BIN        BINARY  MOVEABLE PURE   "..\\debug\\myextern.dll"
    

    2) Compile RC file to RES file using the Resource Compiler:

    rc.exe /fo "Release/mydll.res" ".\mydll.rc"
    

    If you are using Visual Studio, it will build the RES file and will also bind it with executable.

    3) Find and load the resource from the executable:

    bool ExtractResource(const HINSTANCE hInstance, WORD resourceID, LPCTSTR szFilename)
    {
      bool bSuccess = false; 
      try
      {
          // Find and load the resource
          HRSRC hResource = FindResource(hInstance, MAKEINTRESOURCE(resourceID), _T(“BINARY”));
          HGLOBAL hFileResource = LoadResource(hInstance, hResource);
    
          // Open and map this to a disk file
          LPVOID lpFile = LockResource(hFileResource);
          DWORD dwSize = SizeofResource(hInstance, hResource);            
    
          // Open the file and filemap
          HANDLE hFile = CreateFile(szFilename, GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
          HANDLE hFileMap = CreateFileMapping(hFile, NULL, PAGE_READWRITE, 0, dwSize, NULL);            
          LPVOID lpAddress = MapViewOfFile(hFileMap, FILE_MAP_WRITE, 0, 0, 0);            
    
          // Write the file
          CopyMemory(lpAddress, lpFile, dwSize);            
    
          // Un-map the file and close the handles
          UnmapViewOfFile(lpAddress);
          CloseHandle(hFileMap);
          CloseHandle(hFile);
       }
       catch(…)
       {
            // Whatever
       } 
       return bSuccess;
    
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to embed an application (like Preview, Pages etc) into a Cocoa
Is it possible to embed a Gtk widget into an application using System.Windows.Forms? Thanks!
Is it possible to embed an external application inside the browser (IE, Chrome, Safari,
Is it possible to embed a webkit plugin into an application directly (bypassing a
Is it possible to embed a .net resource (resx) into compiled assembly as a
I've learned that it's possible to embed an image in an HTML page like
Is it possible to embed an inline search box into a web page which
Is it possible to embed a PowerPoint presentation (.ppt) into a webpage (.xhtml)? This
Theoretically, it is possible to embed ads into a winforms app running on a
Is it possible to embed flash in a mono Application? Preferably would be similar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.