mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-18 05:24:47 +00:00
24 lines
No EOL
506 B
C
24 lines
No EOL
506 B
C
/**
|
|
* @file Global.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief Headers for global variables
|
|
* @version 0.2
|
|
* @date 2023-01-29
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* @brief Determines whether the one application gets the handle or not
|
|
* this is used to ensure that only one application can get the handle
|
|
*
|
|
*/
|
|
BOOLEAN g_HandleInUse;
|
|
|
|
/**
|
|
* @brief Shows whether the VMM is initialized or not
|
|
*
|
|
*/
|
|
BOOLEAN g_VmmInitialized; |