We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca78386 commit a0073fdCopy full SHA for a0073fd
src/windows/entrypoint.c
@@ -137,8 +137,9 @@ void capture_mono_path(void *handle) {
137
138
bool_t initialized = FALSE;
139
void *WINAPI get_proc_address_detour(void *module, char *name) {
140
+ // If the lpProcName pointer contains an ordinal rather than a string,
141
+ // high-word value of the pointer is zero (see PR #66)
142
#define REDIRECT_INIT(init_name, init_func, target, extra_init) \
- // If the lpProcName pointer contains an ordinal rather than a string, high-word value of the pointer is zero (see PR #66)
143
if (HIWORD(name) && lstrcmpA(name, init_name) == 0) { \
144
if (!initialized) { \
145
initialized = TRUE; \
0 commit comments