Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syscall_loadlibrary (0.14 sec)

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

    // return syscall.Handle and syscall.Errno, but these are the same, in fact,
    // as windows.Handle and windows.Errno, and we intend to keep these the same.
    
    //go:linkname syscall_loadlibrary syscall.loadlibrary
    func syscall_loadlibrary(filename *uint16) (handle Handle, err Errno)
    
    //go:linkname syscall_getprocaddress syscall.getprocaddress
    func syscall_getprocaddress(handle Handle, procname *uint8) (proc uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows.go

    	}
    	return
    }
    
    // golang.org/x/sys linknames syscall.loadlibrary
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    //go:linkname syscall_loadlibrary syscall.loadlibrary
    func syscall_loadlibrary(filename *uint16) (handle, err uintptr) {
    	handle, _, err = syscall_SyscallN(uintptr(unsafe.Pointer(_LoadLibraryW)), uintptr(unsafe.Pointer(filename)))
    	KeepAlive(filename)
    	if handle != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top