mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-08-31 10:07:02 +00:00
30 lines
572 B
C
30 lines
572 B
C
/**
|
|
* @file globals.h
|
|
* @author M.H. Gholamrezaei (mh@hyperdbg.org)
|
|
*
|
|
* @details Global variables header
|
|
* @version 0.1
|
|
* @date 2020-10-22
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#ifndef GLOBALS_H
|
|
# define GLOABLS_H
|
|
# define MAX_TEMP_COUNT 128
|
|
|
|
#endif // !GLOBALS_H
|
|
|
|
/**
|
|
* @brief Instance information of the current hwdbg debuggee
|
|
*
|
|
*/
|
|
HWDBG_INSTANCE_INFORMATION g_HwdbgInstanceInfo;
|
|
|
|
/**
|
|
* @brief Shows whether the instance info is valid (received) or not
|
|
*
|
|
*/
|
|
BOOLEAN g_HwdbgInstanceInfoIsValid;
|