Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewNTString (0.1 sec)

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

    func (s *NTUnicodeString) String() string {
    	return UTF16ToString(s.Slice())
    }
    
    // NewNTString returns a new NTString structure for use with native
    // NT APIs that work over the NTString type. Note that most Windows APIs
    // do not use NTString, and instead UTF16PtrFromString should be used for
    // the more common *uint16 string type.
    func NewNTString(s string) (*NTString, error) {
    	var nts NTString
    	s8, err := BytePtrFromString(s)
    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