HyperDbg/hyperdbg/hyperhv/code/mmio/MmioShadowing.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);
}