|
InitializeSecurityDescriptor The InitializeSecurityDescriptor function initializes a new security descriptor. VB4-32,5,6 Declare Function InitializeSecurityDescriptor Lib "advapi32.dll" (pSecurityDescriptor As SECURITY_DESCRIPTOR, ByVal dwRevision As Long) As Long |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Win9x/ME: Not supported |
· pSecurityDescriptor [out] Pointer to a SECURITY_DESCRIPTOR structure that the function initializes.
· dwRevision [in] Specifies the revision level to assign to the security descriptor. This parameter must be SECURITY_DESCRIPTOR_REVISION. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError. |
|
|
|