steam_helper: Use PROCESSINFOCLASS.
We no longer have PROCESS_INFORMATION_CLASS as of ce91ef6426bf ("kernelbase: Add SetProcessInformation().")
This commit is contained in:
parent
dc3a951754
commit
f7a03d620e
1 changed files with 1 additions and 1 deletions
|
@ -1446,7 +1446,7 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
if (game_process)
|
||||
NtSetInformationProcess( GetCurrentProcess(), (PROCESS_INFORMATION_CLASS)1000 /* ProcessWineMakeProcessSystem */,
|
||||
NtSetInformationProcess( GetCurrentProcess(), (PROCESSINFOCLASS)1000 /* ProcessWineMakeProcessSystem */,
|
||||
&wait_handle, sizeof(HANDLE *) );
|
||||
|
||||
if(wait_handle != INVALID_HANDLE_VALUE)
|
||||
|
|
Loading…
Reference in a new issue