ntoskrnl.exe: Add stub for PsSetCreateThreadNotifyRoutine.
This commit is contained in:
parent
9a95c077fe
commit
43b7f268e4
|
@ -54,6 +54,7 @@ typedef struct _KSERVICE_TABLE_DESCRIPTOR
|
||||||
KSERVICE_TABLE_DESCRIPTOR KeServiceDescriptorTable[4] = { { 0 } };
|
KSERVICE_TABLE_DESCRIPTOR KeServiceDescriptorTable[4] = { { 0 } };
|
||||||
|
|
||||||
typedef void (WINAPI *PCREATE_PROCESS_NOTIFY_ROUTINE)(HANDLE,HANDLE,BOOLEAN);
|
typedef void (WINAPI *PCREATE_PROCESS_NOTIFY_ROUTINE)(HANDLE,HANDLE,BOOLEAN);
|
||||||
|
typedef void (WINAPI *PCREATE_THREAD_NOTIFY_ROUTINE)(HANDLE,HANDLE,BOOLEAN);
|
||||||
|
|
||||||
static struct list Irps = LIST_INIT(Irps);
|
static struct list Irps = LIST_INIT(Irps);
|
||||||
|
|
||||||
|
@ -1110,6 +1111,17 @@ NTSTATUS WINAPI PsSetCreateProcessNotifyRoutine( PCREATE_PROCESS_NOTIFY_ROUTINE
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* PsSetCreateThreadNotifyRoutine (NTOSKRNL.EXE.@)
|
||||||
|
*/
|
||||||
|
NTSTATUS WINAPI PsSetCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE NotifyRoutine )
|
||||||
|
{
|
||||||
|
FIXME( "stub: %p\n", NotifyRoutine );
|
||||||
|
return STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
|
* MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -908,7 +908,7 @@
|
||||||
@ stub PsRevertToSelf
|
@ stub PsRevertToSelf
|
||||||
@ stub PsSetContextThread
|
@ stub PsSetContextThread
|
||||||
@ stdcall PsSetCreateProcessNotifyRoutine(ptr long)
|
@ stdcall PsSetCreateProcessNotifyRoutine(ptr long)
|
||||||
@ stub PsSetCreateThreadNotifyRoutine
|
@ stdcall PsSetCreateThreadNotifyRoutine(ptr)
|
||||||
@ stub PsSetJobUIRestrictionsClass
|
@ stub PsSetJobUIRestrictionsClass
|
||||||
@ stub PsSetLegoNotifyRoutine
|
@ stub PsSetLegoNotifyRoutine
|
||||||
@ stub PsSetLoadImageNotifyRoutine
|
@ stub PsSetLoadImageNotifyRoutine
|
||||||
|
|
Loading…
Reference in New Issue