Marvin Preuss
d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
20 lines
337 B
Go
20 lines
337 B
Go
package ieproxy
|
|
|
|
import (
|
|
"golang.org/x/sys/windows"
|
|
"unsafe"
|
|
)
|
|
|
|
var kernel32 = windows.NewLazySystemDLL("kernel32.dll")
|
|
var globalFree = kernel32.NewProc("GlobalFree")
|
|
|
|
func globalFreeWrapper(ptr *uint16) {
|
|
if ptr != nil {
|
|
_, _, _ = globalFree.Call(uintptr(unsafe.Pointer(ptr)))
|
|
}
|
|
}
|
|
|
|
func rTrue(r uintptr) bool {
|
|
return r == 1
|
|
}
|