From 271fb0f2706940477f076b03f696c624ed3156d9 Mon Sep 17 00:00:00 2001 From: Igor Pissolati Date: Sun, 11 Jan 2026 17:12:40 -0300 Subject: [PATCH] Add useful comment to user_callback_dispatch header --- src/windows-emulator/user_callback_dispatch.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/windows-emulator/user_callback_dispatch.hpp b/src/windows-emulator/user_callback_dispatch.hpp index b74e647a..306272dc 100644 --- a/src/windows-emulator/user_callback_dispatch.hpp +++ b/src/windows-emulator/user_callback_dispatch.hpp @@ -6,6 +6,7 @@ // In the real implementation, the kernel invokes ntdll!KiUserCallbackDispatcher and passes a callback // index that refers to an entry in PEB->KernelCallbackTable. The dispatcher then looks up the function // pointer in that table and invokes the corresponding user-mode callback. +// See Also: https://web.archive.org/web/20080717175308/http://www.nynaeve.net/?p=204 template void prepare_call_stack(x86_64_emulator& emu, uint64_t return_address, Args... args)