本帖最后由 zhyj_88 于 2012-10-09 17:03:46 编辑

解决方案 »

  1.   

    自己找到了。
    Public Type ACL
            AclRevision As Byte
            Sbz1 As Byte
            AclSize As Integer
            AceCount As Integer
            Sbz2 As Integer
    End Type
    Public Type SECURITY_DESCRIPTOR
            Revision As Byte
            Sbz1 As Byte
            Control As Long
            Owner As Long
            Group As Long
            Sacl As ACL
            Dacl As ACL
    End Type
    Public Type SECURITY_ATTRIBUTES
            nLength As Long
            lpSecurityDescriptor As Long
            bInheritHandle As Long
    End Type
      

  2.   

    在Microsoft Visual Studio 6.0 Tools\API Text Viewer里面可以找到并复制粘贴出来啊。