mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-18 05:24:47 +00:00
25 lines
542 B
C
25 lines
542 B
C
/**
|
|
* @file messaging.h
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief headers for messaging functions
|
|
* @details
|
|
* @version 0.19
|
|
* @date 2026-05-28
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
//////////////////////////////////////////////////
|
|
// Functions //
|
|
//////////////////////////////////////////////////
|
|
|
|
VOID
|
|
SetTextMessageCallback(PVOID Handler);
|
|
|
|
PVOID
|
|
SetTextMessageCallbackUsingSharedBuffer(PVOID Handler);
|
|
|
|
VOID
|
|
UnsetTextMessageCallback();
|