1
0
mirror of https://github.com/UzixLS/KernelEx.git synced 2025-07-19 07:21:20 +03:00

import KernelEx-4.0-Final

This commit is contained in:
UzixLS
2018-11-03 16:20:02 +03:00
parent 339353cce8
commit 30df122aba
339 changed files with 11011 additions and 1945 deletions

0
auxiliary/psapi/makefile Executable file → Normal file
View File

0
auxiliary/psapi/makefile.msv Executable file → Normal file
View File

6
auxiliary/psapi/psapi.c Executable file → Normal file
View File

@ -155,12 +155,6 @@ BOOL WINAPI EnumProcessModules(
hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE | TH32CS_SNAPPROCESS,pid);
if (hSnap == INVALID_HANDLE_VALUE) return FALSE;
ProcessModuleID = FindProcessMID(hSnap,pid);
if ( !ProcessModuleID )
{
CloseHandle(hSnap);
SetLastError(ERROR_INVALID_HANDLE);
return FALSE;
}
onemodule.dwSize = sizeof(MODULEENTRY32);
lRet = Module32First(hSnap, &onemodule);
*lpcbNeeded = 0;

0
auxiliary/psapi/psapi.def Executable file → Normal file
View File