Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SecurityAnonymous (0.18 sec)

  1. src/internal/syscall/windows/security_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package windows
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const (
    	SecurityAnonymous      = 0
    	SecurityIdentification = 1
    	SecurityImpersonation  = 2
    	SecurityDelegation     = 3
    )
    
    //sys	ImpersonateSelf(impersonationlevel uint32) (err error) = advapi32.ImpersonateSelf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top