Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getSystemWindowsDirectory (0.16 sec)

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

    	return
    }
    
    func GetSystemTimePreciseAsFileTime(time *Filetime) {
    	syscall.Syscall(procGetSystemTimePreciseAsFileTime.Addr(), 1, uintptr(unsafe.Pointer(time)), 0, 0)
    	return
    }
    
    func getSystemWindowsDirectory(dir *uint16, dirLen uint32) (len uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procGetSystemWindowsDirectoryW.Addr(), 2, uintptr(unsafe.Pointer(dir)), uintptr(dirLen), 0)
    	len = uint32(r0)
    	if len == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top