mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-28 02:15:29 +00:00
37 lines
662 B
C
37 lines
662 B
C
/**
|
|
* @file mock.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief Header for the mock user-mode application for testing the HyperDbg
|
|
* @details
|
|
* @version 0.19
|
|
* @date 2026-04-28
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#ifndef PCH_H
|
|
#define PCH_H
|
|
|
|
//
|
|
// Scope definitions
|
|
//
|
|
#define HYPERDBG_USER_MODE
|
|
#define HYPERDBG_LINUX
|
|
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
//
|
|
// SDK headers
|
|
//
|
|
#include "../../../include/SDK/HyperDbgSdk.h"
|
|
|
|
//
|
|
// Platform headers
|
|
//
|
|
#include "../../../include/platform/user/header/platform-intrinsics.h"
|
|
|
|
#endif // PCH_H
|