diff --git a/patcher/patcher.go b/patcher/patcher.go index 203e295..a4ee2f4 100644 --- a/patcher/patcher.go +++ b/patcher/patcher.go @@ -18,7 +18,7 @@ var modPSAPI *windows.LazyDLL = windows.NewLazySystemDLL("psapi.dll") var procReadProcessMemory *windows.LazyProc = modKernel32.NewProc("ReadProcessMemory") var procWriteProcessMemory *windows.LazyProc = modKernel32.NewProc("WriteProcessMemory") var procVirtualProtectEx *windows.LazyProc = modKernel32.NewProc("VirtualProtectEx") -var procVirtualQueryEx *windows.LazyProc = modKernel32.NewProc("VirtualQueryEx") +var procVirtualQueryEx *windows.LazyProc = modKernel32.NewProc("VirtualQueryEx") //lint:ignore U1000 Will use later var procEnumProcessModules *windows.LazyProc = modPSAPI.NewProc("EnumProcessModules") var procGetModuleInformation *windows.LazyProc = modPSAPI.NewProc("GetModuleInformation") var procGetModuleFileNameExA *windows.LazyProc = modPSAPI.NewProc("GetModuleFileNameExA")