mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
e45e342624
These are not wire protocols, there are no structures to parse. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14191 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Pair-progammed-with: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
22 lines
712 B
Python
22 lines
712 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''open_files.idl
|
|
perfcount.idl secrets.idl
|
|
smbXsrv.idl
|
|
leases_db.idl
|
|
''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr')
|
|
|
|
bld.SAMBA_PIDL_LIST('PIDL',
|
|
'''libnetapi.idl libnet_join.idl
|
|
''',
|
|
options='--includedir=%s --header --ndr-parser' % topinclude,
|
|
output_dir='../gen_ndr',
|
|
generate_tables=False)
|