Return "no debugger attached" in NtQueryInformationProcess to satisfy

some copy protection mechanisms.
This commit is contained in:
Marcus Meissner 2000-06-25 12:51:55 +00:00 committed by Alexandre Julliard
parent 9a5b0d4fbf
commit 12298c5cad
1 changed files with 7 additions and 1 deletions

View File

@ -97,7 +97,13 @@ NTSTATUS WINAPI NtQueryInformationProcess(
OUT PULONG ReturnLength)
{
FIXME("(0x%08x,0x%08x,%p,0x%08lx,%p),stub!\n",
ProcessHandle,ProcessInformationClass,ProcessInformation,ProcessInformationLength,ReturnLength);
ProcessHandle,ProcessInformationClass,ProcessInformation,ProcessInformationLength,ReturnLength
);
/* "These are not the debuggers you are looking for." */
if (ProcessInformationClass == ProcessDebugPort)
/* set it to 0 aka "no debugger" to satisfy copy protections */
memset(ProcessInformation,0,ProcessInformationLength);
return 0;
}