diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-08 13:23:20 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-08 13:23:20 +0000 |
commit | 668c938678fd7f08ca1ad3412d090f487295211f (patch) | |
tree | 702bd71917f7889f0ef0bc34ea6a1abaf7b7872a /source4/librpc/ndr/ndr_lsa.h | |
parent | 7d212460a5c00b4039440c2db0dde56e7d519d66 (diff) | |
download | samba-668c938678fd7f08ca1ad3412d090f487295211f.tar.gz samba-668c938678fd7f08ca1ad3412d090f487295211f.tar.bz2 samba-668c938678fd7f08ca1ad3412d090f487295211f.zip |
- more generation fixes
- added auto-generation from the Makefile. Only called when you run "make idl"
(This used to be commit 47a17e5a08dcb5ef2880f75a59bf417e161a71d3)
Diffstat (limited to 'source4/librpc/ndr/ndr_lsa.h')
-rw-r--r-- | source4/librpc/ndr/ndr_lsa.h | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/source4/librpc/ndr/ndr_lsa.h b/source4/librpc/ndr/ndr_lsa.h index ab9b0ea164..c19a884536 100644 --- a/source4/librpc/ndr/ndr_lsa.h +++ b/source4/librpc/ndr/ndr_lsa.h @@ -1,25 +1,3 @@ -/* - Unix SMB/CIFS implementation. - - definitions for marshalling/unmarshalling the lsa pipe - - Copyright (C) Andrew Tridgell 2003 - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ - /* header auto-generated by pidl */ struct lsa_QosInfo { @@ -76,16 +54,15 @@ struct lsa_SidArray { struct lsa_EnumSids { struct { struct policy_handle *handle; - uint32 resume_handle; + uint32 *resume_handle; uint32 num_entries; } in; struct { - uint32 resume_handle; + uint32 *resume_handle; struct lsa_SidArray *sids; NTSTATUS result; } out; }; - |