mirror-ac/driver/thread.h
2024-05-05 23:58:36 +10:00

15 lines
No EOL
214 B
C

#ifndef THREAD_H
#define THREAD_H
#include <ntifs.h>
#include "common.h"
#include "callbacks.h"
BOOLEAN
DoesThreadHaveValidCidEntry(_In_ PETHREAD Thread);
VOID
DetectThreadsAttachedToProtectedProcess();
#endif