15 lines
214 B
C++
15 lines
214 B
C++
#pragma once
|
|
#include "Base.h"
|
|
|
|
namespace thread_notify_routine
|
|
{
|
|
extern BOOL g_thread_protect;
|
|
|
|
extern PKEVENT g_UserEvent;
|
|
|
|
auto create_thread_routine()->NTSTATUS;
|
|
|
|
auto unload_thread_routine()->NTSTATUS;
|
|
|
|
|
|
} |