From a9ddd396c4e5feca0276f78cf6f21373db596082 Mon Sep 17 00:00:00 2001 From: André Zwing Date: Sun, 11 May 2025 16:55:19 +0200 Subject: [WOW64] Initial implementation patches (#2619) * [WOW64] Add stub for VolatileRangesContains * [WOW64] Implement BTCpu[GS]etContext * [WOW64] Add env support --- src/os/os_wine.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/os') diff --git a/src/os/os_wine.c b/src/os/os_wine.c index 949d7731..e7f34a99 100644 --- a/src/os/os_wine.c +++ b/src/os/os_wine.c @@ -187,4 +187,9 @@ void WinFree(void* ptr) void free(void* ptr) { RtlFreeHeap(myGetProcessHeap(), 0, ptr); -} \ No newline at end of file +} + +int VolatileRangesContains(uintptr_t addr) +{ + return 0; +} -- cgit 1.4.1