mirror of
https://github.com/x64dbg/x64dbg.git
synced 2024-11-27 06:40:24 +00:00
13 lines
249 B
C
13 lines
249 B
C
#ifndef IMPORTS_H
|
|
#define IMPORTS_H
|
|
|
|
#ifdef BUILD_LIB
|
|
#include "..\..\..\x64_dbg_bridge\bridgemain.h"
|
|
#else
|
|
#include "NewTypes.h"
|
|
void stubReadProcessMemory(byte_t* dest, uint_t va, uint_t size);
|
|
#endif
|
|
|
|
|
|
#endif // IMPORTS_H
|