Skip to content

Commit 8da72cf

Browse files
committed
CommandLineToArgvW hook - fixes #92
1 parent f9ae4ed commit 8da72cf

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

hook_misc.c

+9
Original file line numberDiff line numberDiff line change
@@ -1856,6 +1856,15 @@ HOOKDEF(LPWSTR, WINAPI, GetCommandLineW,
18561856
return ret;
18571857
}
18581858

1859+
HOOKDEF(LPWSTR, WINAPI, CommandLineToArgvW,
1860+
__in LPWSTR lpCmdLine,
1861+
__out int *pNumArgs
1862+
) {
1863+
LPWSTR ret = Old_CommandLineToArgvW(lpCmdLine, pNumArgs);
1864+
LOQ_nonnull("misc", "ui", "CommandLine", lpCmdLine, "NumArgs", *pNumArgs);
1865+
return ret;
1866+
}
1867+
18591868
HOOKDEF(BOOL, WINAPI, EnumDisplayDevicesA,
18601869
_In_ LPCSTR lpDevice,
18611870
_In_ DWORD iDevNum,

hooks.c

+1
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ hook_t full_hooks[] = {
329329
//HOOK(ntdll, RtlMoveMemory),
330330
HOOK(kernel32, GetCommandLineA),
331331
HOOK(kernel32, GetCommandLineW),
332+
HOOK(shcore, CommandLineToArgvW),
332333
HOOK(kernel32, OutputDebugStringA),
333334
HOOK(kernel32, OutputDebugStringW),
334335
HOOK(kernel32, HeapCreate),

hooks.h

+5
Original file line numberDiff line numberDiff line change
@@ -3592,6 +3592,11 @@ HOOKDEF(LPWSTR, WINAPI, GetCommandLineW,
35923592
void
35933593
);
35943594

3595+
HOOKDEF(LPWSTR, WINAPI, CommandLineToArgvW,
3596+
__in LPWSTR lpCmdLine,
3597+
__out int *pNumArgs
3598+
);
3599+
35953600
HOOKDEF(BOOL, WINAPI, DisableThreadLibraryCalls,
35963601
__in HMODULE hLibModule
35973602
);

0 commit comments

Comments
 (0)