mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-30 11:25:31 +00:00
21 lines
421 B
C
21 lines
421 B
C
/**
|
|
* @file MmioShadowing.c
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief Functions for MMIO shadowing
|
|
*
|
|
* @version 0.14
|
|
* @date 2025-02-25
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#include "pch.h"
|
|
|
|
VOID
|
|
MmioShadowingInitialize(
|
|
PVOID MmioPhysicalAddress,
|
|
ULONG64 Size)
|
|
{
|
|
UNREFERENCED_PARAMETER(MmioPhysicalAddress);
|
|
UNREFERENCED_PARAMETER(Size);
|
|
}
|