mirror-ac/driver/thread.h

15 lines
214 B
C
Raw Normal View History

2023-08-29 19:36:58 +02:00
#ifndef THREAD_H
#define THREAD_H
#include <ntifs.h>
2023-12-13 05:06:27 +01:00
#include "common.h"
#include "callbacks.h"
2023-08-29 19:36:58 +02:00
BOOLEAN
2024-05-05 15:58:36 +02:00
DoesThreadHaveValidCidEntry(_In_ PETHREAD Thread);
2023-09-02 15:47:15 +02:00
2023-10-05 08:27:17 +02:00
VOID
2023-09-27 06:22:14 +02:00
DetectThreadsAttachedToProtectedProcess();
2023-09-02 15:47:15 +02:00
2023-08-29 19:36:58 +02:00
#endif