Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetCurrentThreadEffectiveToken (0.25 sec)

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

    // to be closed.
    func GetCurrentThreadToken() Token {
    	return Token(^uintptr(5 - 1))
    }
    
    // GetCurrentThreadEffectiveToken returns the effective access token
    // associated with the current thread. It is a pseudo token that does
    // not need to be closed.
    func GetCurrentThreadEffectiveToken() Token {
    	return Token(^uintptr(6 - 1))
    }
    
    // Close releases access to access token.
    func (t Token) Close() error {
    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