diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-10 20:09:23 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-10 14:09:23 +0200 |
| commit | 0bb41a73c27df807ba8fcaa205612be7b3a1ac95 (patch) | |
| tree | e789a5ff074bae6d492c6ea19f824cdecc7e3d37 /src/include/symbolfuncs.h | |
| parent | f9f082ee53ae0ab8e12b0c1bf1de339af8b92282 (diff) | |
| download | box64-0bb41a73c27df807ba8fcaa205612be7b3a1ac95.tar.gz box64-0bb41a73c27df807ba8fcaa205612be7b3a1ac95.zip | |
[WOW64] More tweaks towards PE build (#2519)
Diffstat (limited to 'src/include/symbolfuncs.h')
| -rw-r--r-- | src/include/symbolfuncs.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/symbolfuncs.h b/src/include/symbolfuncs.h new file mode 100644 index 00000000..ba99f923 --- /dev/null +++ b/src/include/symbolfuncs.h @@ -0,0 +1,8 @@ +#ifndef __SYMBOLFUNCS_H__ +#define __SYMBOLFUNCS_H__ + +#include <stdint.h> + +int PrintFunctionAddr(uintptr_t nextaddr, const char* text); // 0 if nothing was found + +#endif // __SYMBOLFUNCS_H__ \ No newline at end of file |