Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for notString (0.34 sec)

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

    type NTUnicodeString struct {
    	Length        uint16
    	MaximumLength uint16
    	Buffer        *uint16
    }
    
    // NTString is an ANSI string for NT native APIs, corresponding to STRING.
    type NTString struct {
    	Length        uint16
    	MaximumLength uint16
    	Buffer        *byte
    }
    
    type LIST_ENTRY struct {
    	Flink *LIST_ENTRY
    	Blink *LIST_ENTRY
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall(procRtlGetVersion.Addr(), 1, uintptr(unsafe.Pointer(info)), 0, 0)
    	if r0 != 0 {
    		ntstatus = NTStatus(r0)
    	}
    	return
    }
    
    func RtlInitString(destinationString *NTString, sourceString *byte) {
    	syscall.Syscall(procRtlInitString.Addr(), 2, uintptr(unsafe.Pointer(destinationString)), uintptr(unsafe.Pointer(sourceString)), 0)
    	return
    }
    
    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