Example #1
0
NTSTATUS kkll_m_notify_list_image(PKIWI_BUFFER outBuffer)
{
	return kkll_m_notify_list(outBuffer, ImageReferences, ARRAYSIZE(ImageReferences), (PUCHAR *) &PspLoadImageNotifyRoutine, &PspLoadImageNotifyRoutineMax);
}
Example #2
0
NTSTATUS kkll_m_notify_list_process(PKIWI_BUFFER outBuffer)
{
	return kkll_m_notify_list(outBuffer, ProcessReferences, ARRAYSIZE(ProcessReferences), (PUCHAR *) &PspCreateProcessNotifyRoutine, &PspCreateProcessNotifyRoutineMax);
}
Example #3
0
NTSTATUS kkll_m_notify_list_thread(PKIWI_BUFFER outBuffer)
{
	return kkll_m_notify_list(outBuffer, ThreadReferences, ARRAYSIZE(ThreadReferences), (PUCHAR *) &PspCreateThreadNotifyRoutine, &PspCreateThreadNotifyRoutineMax);
}
Example #4
0
NTSTATUS kkll_m_notify_list_image(PKIWI_BUFFER outBuffer)
{
	return kkll_m_notify_list(outBuffer, ImageReferences, sizeof(ImageReferences) / sizeof(KKLL_M_MEMORY_GENERIC), (PUCHAR *) &PspLoadImageNotifyRoutine, &PspLoadImageNotifyRoutineMax);
}
Example #5
0
NTSTATUS kkll_m_notify_list_process(PKIWI_BUFFER outBuffer)
{
	return kkll_m_notify_list(outBuffer, ProcessReferences, sizeof(ProcessReferences) / sizeof(KKLL_M_MEMORY_GENERIC), (PUCHAR *) &PspCreateProcessNotifyRoutine, &PspCreateProcessNotifyRoutineMax);
}
Example #6
0
NTSTATUS kkll_m_notify_list_thread(PKIWI_BUFFER outBuffer)
{
	return kkll_m_notify_list(outBuffer, ThreadReferences, sizeof(ThreadReferences) / sizeof(KKLL_M_MEMORY_GENERIC), (PUCHAR *) &PspCreateThreadNotifyRoutine, &PspCreateThreadNotifyRoutineMax);
}