mirror of
https://github.com/eversinc33/Banshee
synced 2026-06-08 14:08:04 +00:00
28 lines
377 B
C++
28 lines
377 B
C++
#pragma once
|
|
|
|
#pragma comment(lib, "Ksecdd.lib")
|
|
|
|
#include <ntifs.h>
|
|
#include <wdf.h>
|
|
#include <ntddk.h>
|
|
#include <intrin.h>
|
|
#include "WinTypes.hpp"
|
|
#include "ProcessUtils.hpp"
|
|
#include "Misc.hpp"
|
|
|
|
NTSTATUS
|
|
BeCreateSharedMemory();
|
|
|
|
VOID
|
|
BeCloseSharedMemory(
|
|
_In_ HANDLE hSharedMemory,
|
|
_In_ PVOID pSharedMemory
|
|
);
|
|
|
|
KIRQL
|
|
WPOFFx64();
|
|
|
|
VOID
|
|
WPONx64(
|
|
_In_ KIRQL irql
|
|
); |