about summary refs log tree commit diff stats
path: root/wine
diff options
context:
space:
mode:
Diffstat (limited to 'wine')
-rw-r--r--wine/wow64/wowbox64.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/wine/wow64/wowbox64.c b/wine/wow64/wowbox64.c
index 770af6bf..67d20e05 100644
--- a/wine/wow64/wowbox64.c
+++ b/wine/wow64/wowbox64.c
@@ -75,6 +75,18 @@ int is_addr_unaligned(uintptr_t addr)
     return 0;
 }
 
+#ifdef DYNAREC
+int nUnalignedRange(uintptr_t start, size_t size)
+{
+    // FIXME
+    return 0;
+}
+void getUnalignedRange(uintptr_t start, size_t size, uintptr_t addrs[])
+{
+    //FIXME
+}
+#endif
+
 typedef void (*wrapper_t)(x64emu_t* emu, uintptr_t fnc);
 int isSimpleWrapper(wrapper_t fun)
 {