Ever wanted to call something like NtQueueApcThreadEx2 in your program without having to worry about version-dependent syscall IDX?
That's what Aether does. It lets you call undocumented Native API routines on any system without hardcoding IDX by Windows Build.
This implementation assumes a non-modified ntdll.dll in your process.
You can either implement your own skeletons and wrap the syscall stub inside of a function like so:
Or simply use the Syscall function that allows you to dynamically call with the routine name:
ComfySyscalls by namazso


