mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
15 lines
No EOL
214 B
C
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 |