Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( /* Btw this is rewritten version lol correct : virutalallocex := windows.NewLazySystemDLL("kernel32.dll").NewProc("VirtualAllocEx") ---------------------------------------------------------------------------------- bad: k32 = windows.NewLazyDLL("kernel32.dll") virutalallocex = k32.NewProc("VirtualAllocEx") ---------------------------------------------------------------------------------- you basically make big mistake, why? cuz you import the ENTIRE DLL, you dont use the specified function in it, you import it entirely with all other 329 calls inside there but it is and isnt, cuz specific imports are EXTREMLY, suspicious so uhh yk :shrug: so in nutshell it doesnt really matter lol */ VirtualAllocEx = windows.NewLazySystemDLL("kernel32.dll").NewProc("VirtualAllocEx") GetThreadContext = windows.NewLazySystemDLL("kernel32.dll").NewProc("GetThreadContext") SetThreadContext = windows.NewLazySystemDLL("kernel32.dll").NewProc("SetThreadContext") NtUnmapViewOfSection = windows.NewLazySystemDLL("ntdll.dll").NewProc("NtUnmapViewOfSection") )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.