Author: hpoussin
Date: Sun Aug 3 06:06:40 2008
New Revision: 35063
URL:
http://svn.reactos.org/svn/reactos?rev=35063&view=rev
Log:
Workaround WIDL bug
Modified:
trunk/reactos/include/reactos/idl/lsa.idl
Modified: trunk/reactos/include/reactos/idl/lsa.idl
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/idl/lsa.id…
==============================================================================
--- trunk/reactos/include/reactos/idl/lsa.idl [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/idl/lsa.idl [iso-8859-1] Sun Aug 3 06:06:40 2008
@@ -38,8 +38,10 @@
SECURITY_DESCRIPTOR_CONTROL Control;
PRPC_SID Owner;
PRPC_SID Group;
- PLSAPR_ACL Sacl;
- PLSAPR_ACL Dacl;
+ LSAPR_ACL *Sacl;
+ /* FIXME: should be PLSAPR_ACL Sacl; */
+ LSAPR_ACL *Dacl;
+ /* FIXME: should be PLSAPR_ACL Dacl; */
} LSAPR_SECURITY_DESCRIPTOR, *PLSAPR_SECURITY_DESCRIPTOR;
cpp_quote("#if 0");