This repository has been archived by the owner on Apr 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix inherited by @piscisaureus's work:
* nodejs/node#1251 and * nodejs/node#1266 Note: this is a disableable/optional feature and it is disabled by default (since there are chances that MSVCR chokes on linking, given if the module exports data) Issue URL: #4. PR URL: #5.
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* When this file is linked to a DLL, it sets up a delay-load hook that | ||
* intervenes when the DLL is trying to load 'node.exe' or 'iojs.exe' | ||
* dynamically. Instead of trying to locate the .exe file it'll just return | ||
* a handle to the process image. | ||
* | ||
* This allows compiled addons to work when node.exe or iojs.exe is renamed. | ||
*/ | ||
|
||
#ifdef _MSC_VER | ||
|
||
#define WIN32_LEAN_AND_MEAN | ||
#include <windows.h> | ||
|
||
#include <delayimp.h> | ||
#include <string.h> | ||
|
||
static FARPROC WINAPI load_exe_hook(unsigned int event, DelayLoadInfo* info) { | ||
if (event != dliNotePreLoadLibrary) | ||
return NULL; | ||
|
||
if (_stricmp(info->szDll, "iojs.exe") != 0 && | ||
_stricmp(info->szDll, "node.exe") != 0) | ||
return NULL; | ||
|
||
HMODULE m = GetModuleHandle(NULL); | ||
return (FARPROC) m; | ||
} | ||
|
||
PfnDliHook __pfnDliNotifyHook2 = load_exe_hook; | ||
|
||
#endif |