Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSystemWindowsDirectory (1.17 sec)

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

    			return UTF16ToString(b[:l]), nil
    		}
    		n = l
    	}
    }
    
    // GetSystemWindowsDirectory retrieves the path to current location of the
    // Windows directory, which is typically, though not always, `C:\Windows`.
    func GetSystemWindowsDirectory() (string, error) {
    	n := uint32(MAX_PATH)
    	for {
    		b := make([]uint16, n)
    		l, e := getSystemWindowsDirectory(&b[0], n)
    		if e != nil {
    			return "", e
    		}
    		if l <= n {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. 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