Experimental 64-bit host support

This commit is contained in:
2025-11-04 22:07:51 -07:00
parent 463686d01a
commit 3dd9fb77ff
64 changed files with 1993 additions and 844 deletions

View File

@@ -5,13 +5,13 @@
namespace kernel32 {
struct SLIST_ENTRY {
SLIST_ENTRY *Next;
GUEST_PTR Next;
};
using PSLIST_ENTRY = SLIST_ENTRY *;
struct SLIST_HEADER {
SLIST_ENTRY *Head;
GUEST_PTR Head;
unsigned short Depth;
unsigned short Sequence;
};