Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a static library that may get linked into either a .exe or a .dll. At runtime I want ony of my library functions to get the HMODULE for whatever thing the static library code has been linked into.

I currently use the following trick (inspired from this forum):

const HMODULE GetCurrentModule()
{
    MEMORY_BASIC_INFORMATION mbi = {0};
    ::VirtualQuery( GetCurrentModule, &mbi, sizeof(mbi) );

    return reinterpret_cast<HMODULE>(mbi.AllocationBase);
}

Is there a better way to do this that doesn't look so hacky?

(Note: The purpose of this is to load some Win32 resources that I know my users will have linked in at the same time as my static library.)

share|improve this question
Related: stackoverflow.com/q/119706/946850 – krlmlr Feb 21 '12 at 2:59

4 Answers

up vote 16 down vote accepted
HMODULE GetCurrentModule()
{ // NB: XP+ solution!
  HMODULE hModule = NULL;
  GetModuleHandleEx(
    GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
    (LPCTSTR)GetCurrentModule,
    &hModule);

  return hModule;
}
share|improve this answer
Cool. I remember now that when I wrote my GetCurrentModule() function we had to support Windows 2000. Which is why I used the VirtualQuery() hack instead of GetModuleHandleEx(). – pauldoo Feb 18 '09 at 8:57
GLad to help. Out of curiosity, why did you prefer my solution over the __ImageBase one? – Serge - appTranslator Feb 18 '09 at 14:23
1  
Probably due to not understanding how Windows fixes up symbol addresses. – MSN Feb 18 '09 at 19:50
1  
Note that if this succeeds, it increases the refcount on the module, so you'll need to call FreeLibrary. – Adrian McCarthy Apr 8 '10 at 20:24
6  
@Adrian: Or use GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT. – Amnon Aug 17 '10 at 10:58

__ImageBase is a linker generated symbol that is the DOS header of the module (MSVC only). From that you can cast its address to an HINSTANCE or HMODULE. So it's more convenient than going through an API.

So you just need to do this:

EXTERN_C IMAGE_DOS_HEADER __ImageBase;
#define HINST_THISCOMPONENT ((HINSTANCE)&__ImageBase)

From http://blogs.msdn.com/oldnewthing/archive/2004/10/25/247180.aspx

share|improve this answer
According to the link in my original question, the __ImageBase is only the preferred loading address, not always the actual loading address. – pauldoo Feb 17 '09 at 20:52
You doubt Raymond Chen? The discussion at the link demonstrates a fundamental misunderstanding of a linker constant, but the final comment is correct. – Mark Ransom Feb 17 '09 at 21:15
2  
Err... __ImageBase is a symbol. If it weren't fixed up when the .dll or .exe is loaded, neither would any other symbol and everything would break. Therefore, it's valid to use it since its address is fixed up at image load time. – MSN Feb 17 '09 at 21:43
And the discussion at Raymond Chen's blog has a good discussion about the horrible side effects of GetCurrentModule (not Ex). – MSN Feb 17 '09 at 21:46

I'd look at GetModuleHandleEx() using the flag GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS. It looks like you can change your GetCurrentModule() to call this routine instead of VirtualQuery(), and pass the address of GetCurrentModule() as the lpModuleName argument.

ETA:

const HMODULE GetCurrentModule()
{
    DWORD flags = GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS;
    HMODULE hm = 0;
    ::GetModuleHandleEx( flags, reinterpret_cast<LPCTSTR>( GetCurrentModule ), &hm );   
    return hm;
}

I didn't try it, but I think that'll do what you want.

share|improve this answer

The HMODULE is the HINSTANCE is the base address of the module. So, I'd see how it worked. But if all you want is the HMODULE of the executable, why not enumerate all HMODULE's in the process (EnumProcessModules). One of them will have your .lib linked in.

The limitation I see is that you have no idea which DLL or EXE your .lib comes from. You might want to compare the HMODULEs (base addresses) against the _ReturnAddress you get from your .lib. Your .lib will belong to the highest HMODLUE smaller than your _ReturnAddress

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.