mirror of
https://github.com/x64dbg/x64dbg.git
synced 2024-11-30 08:10:36 +00:00
19 lines
224 B
C
19 lines
224 B
C
|
#ifndef __DBG_H__
|
||
|
#define __DBG_H__
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include "_global.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
void DLL_IMPORT dbg(const char* a);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __DBG_H__
|