Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nts (0.01 sec)

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

    // the more common *uint16 string type.
    func NewNTString(s string) (*NTString, error) {
    	var nts NTString
    	s8, err := BytePtrFromString(s)
    	if err != nil {
    		return nil, err
    	}
    	RtlInitString(&nts, s8)
    	return &nts, nil
    }
    
    // Slice returns a byte slice that aliases the data in the NTString.
    func (s *NTString) Slice() []byte {
    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