mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-10 01:29:59 +00:00
26 lines
591 B
C
26 lines
591 B
C
/**
|
|
* @file export.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief headers for controller of the reversing machine's module
|
|
* @details
|
|
* @version 0.10
|
|
* @date 2024-06-24
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
//////////////////////////////////////////////////
|
|
// Functions //
|
|
//////////////////////////////////////////////////
|
|
|
|
//
|
|
// Some functions are exported to HyperDbgLibImports.h
|
|
//
|
|
|
|
VOID
|
|
ConnectLocalDebugger();
|
|
|
|
BOOLEAN
|
|
ConnectRemoteDebugger(const CHAR * Ip, const CHAR * Port);
|