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

import KernelEx-4.0-RC2

This commit is contained in:
UzixLS
2018-11-03 16:19:29 +03:00
parent d4e0420295
commit 339353cce8
299 changed files with 682 additions and 165 deletions

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

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

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

@ -346,3 +346,9 @@ BOOL WINAPI EnumPageFilesW( PVOID callback, LPVOID context )
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
BOOL WINAPI EmptyWorkingSet( HANDLE hProcess )
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}

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

@ -16,3 +16,4 @@ EXPORTS
InitializeProcessForWsWatch
EnumPageFilesA
EnumPageFilesW
EmptyWorkingSet