Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copySelfRelativeSecurityDescriptor (0.39 sec)

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

    	}
    	err = makeSelfRelativeSD(absoluteSD, selfRelativeSD, &selfRelativeSDSize)
    	return
    }
    
    func (selfRelativeSD *SECURITY_DESCRIPTOR) copySelfRelativeSecurityDescriptor() *SECURITY_DESCRIPTOR {
    	sdLen := int(selfRelativeSD.Length())
    	const min = int(unsafe.Sizeof(SECURITY_DESCRIPTOR{}))
    	if sdLen < min {
    		sdLen = min
    	}
    
    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