Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TrusteeValueFromString (0.3 sec)

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

    	Trustee           TRUSTEE
    }
    
    // This type is the union inside of TRUSTEE and must be created using one of the TrusteeValueFrom* functions.
    type TrusteeValue uintptr
    
    func TrusteeValueFromString(str string) TrusteeValue {
    	return TrusteeValue(unsafe.Pointer(StringToUTF16Ptr(str)))
    }
    func TrusteeValueFromSID(sid *SID) TrusteeValue {
    	return TrusteeValue(unsafe.Pointer(sid))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top