mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-09 17:19:26 +00:00
21 lines
341 B
C
21 lines
341 B
C
/**
|
|
* @file Pt.c
|
|
* @author
|
|
* @brief Processor Trace (PT) tracing implementation for HyperTrace module
|
|
* @details
|
|
* @version 0.19
|
|
* @date 2026-04-25
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*/
|
|
#include "pch.h"
|
|
|
|
/**
|
|
* @brief Processor Trace (PT) test function
|
|
*
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
PtTest()
|
|
{
|
|
}
|