about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-05-06 19:45:38 +0800
committerGitHub <noreply@github.com>2025-05-06 13:45:38 +0200
commit8d7db7f1fb1002adf06a9a3a59302d6a8f8f989a (patch)
treefd5675bec67ddd8ecdc568b4de7885d53e8e8202 /src/include
parent11563f3b62be60d443bcbcd33d02555ef6aa1ba5 (diff)
downloadbox64-8d7db7f1fb1002adf06a9a3a59302d6a8f8f989a.tar.gz
box64-8d7db7f1fb1002adf06a9a3a59302d6a8f8f989a.zip
Added a simple PE loaded dedicated for volatileMetadata (#2607)
Diffstat (limited to 'src/include')
-rw-r--r--src/include/pe_tools.h7
-rw-r--r--src/include/wine_tools.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/src/include/pe_tools.h b/src/include/pe_tools.h
new file mode 100644
index 00000000..54c3d42e
--- /dev/null
+++ b/src/include/pe_tools.h
@@ -0,0 +1,7 @@
+#ifndef __PE_TOOLS_H__
+#define __PE_TOOLS_H__
+
+
+void ParseVolatileMetadata(char* filename, void* addr);
+
+#endif // __PE_TOOLS_H__
diff --git a/src/include/wine_tools.h b/src/include/wine_tools.h
index 4bb0aa3a..d8cefcbc 100644
--- a/src/include/wine_tools.h
+++ b/src/include/wine_tools.h
@@ -10,6 +10,6 @@ void* get_wine_prereserve(void);
 void dynarec_wine_prereserve(void);
 #endif
 
-void DetectUnityPlayer(int fd);
+void DetectUnityPlayer(char* filename);
 
 #endif //__WINE_TOOLS_H__