steam_helper: Use PROCESSINFOCLASS.

We no longer have PROCESS_INFORMATION_CLASS as of ce91ef6426bf ("kernelbase: Add SetProcessInformation().")
This commit is contained in:
Arkadiusz Hiler 2022-12-12 04:13:40 +02:00
parent dc3a951754
commit f7a03d620e

View file

@ -1446,7 +1446,7 @@ int main(int argc, char *argv[])
} }
if (game_process) if (game_process)
NtSetInformationProcess( GetCurrentProcess(), (PROCESS_INFORMATION_CLASS)1000 /* ProcessWineMakeProcessSystem */, NtSetInformationProcess( GetCurrentProcess(), (PROCESSINFOCLASS)1000 /* ProcessWineMakeProcessSystem */,
&wait_handle, sizeof(HANDLE *) ); &wait_handle, sizeof(HANDLE *) );
if(wait_handle != INVALID_HANDLE_VALUE) if(wait_handle != INVALID_HANDLE_VALUE)