Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetProcAddressByOrdinal (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // It is a pseudo handle that does not need to be closed.
    func CurrentThread() Handle { return Handle(^uintptr(2 - 1)) }
    
    // GetProcAddressByOrdinal retrieves the address of the exported
    // function from module by ordinal.
    func GetProcAddressByOrdinal(module Handle, ordinal uintptr) (proc uintptr, err error) {
    	r0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), ordinal, 0)
    	proc = uintptr(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top