HyperDbg/hyperdbg/script-engine/header/globals.h
2024-07-24 21:25:55 +08:00

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;