Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	var present bool
    	err = getSecurityDescriptorDacl(sd, &present, &dacl, &defaulted)
    	if !present {
    		err = ERROR_OBJECT_NOT_FOUND
    	}
    	return
    }
    
    // SetDACL sets the absolute security descriptor DACL.
    func (absoluteSD *SECURITY_DESCRIPTOR) SetDACL(dacl *ACL, present, defaulted bool) error {
    	return setSecurityDescriptorDacl(absoluteSD, present, dacl, defaulted)
    }
    
    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