diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-13 20:02:28 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-13 20:02:28 +0100 |
commit | f425377e5b15dc97ce8caa484b3e282ec5df529c (patch) | |
tree | c3d9a27cb8be758839a90ca85b045144f39b8616 /InjectorTest/main.cpp | |
parent | 9a3e1ec2daf753106ee95d53719d94921d3b051f (diff) | |
download | NorthstarLauncher-f425377e5b15dc97ce8caa484b3e282ec5df529c.tar.gz NorthstarLauncher-f425377e5b15dc97ce8caa484b3e282ec5df529c.zip |
add local http server for auth
Diffstat (limited to 'InjectorTest/main.cpp')
-rw-r--r-- | InjectorTest/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/InjectorTest/main.cpp b/InjectorTest/main.cpp index 351708c3..e9e1e320 100644 --- a/InjectorTest/main.cpp +++ b/InjectorTest/main.cpp @@ -10,7 +10,7 @@ int main() { memset(&startupInfo, 0, sizeof(startupInfo)); memset(&processInfo, 0, sizeof(processInfo)); - CreateProcessW(PROC_NAME, (LPWSTR)L"", NULL, NULL, FALSE, CREATE_SUSPENDED, NULL, NULL, &startupInfo, &processInfo); + CreateProcessW(PROC_NAME, (LPWSTR)L"-noorigin -multiple -novid", NULL, NULL, FALSE, CREATE_SUSPENDED, NULL, NULL, &startupInfo, &processInfo); HMODULE hKernel32 = GetModuleHandleW(L"kernel32.dll"); LPTHREAD_START_ROUTINE pLoadLibraryW = |