diff options
author | David Disseldorp <ddiss@samba.org> | 2012-02-21 14:04:42 +0100 |
---|---|---|
committer | David Disseldorp <ddiss@samba.org> | 2012-06-08 13:34:31 +0200 |
commit | 2836787daa8e78efc7dd166c4f462ca392b3c4c2 (patch) | |
tree | 1d80fa78003250c98c86c30f3e82dc09c407b48e /librpc/wscript_build | |
parent | 03767f5f5ac0293ef61d960ad980636898bd64ba (diff) | |
download | samba-2836787daa8e78efc7dd166c4f462ca392b3c4c2.tar.gz samba-2836787daa8e78efc7dd166c4f462ca392b3c4c2.tar.bz2 samba-2836787daa8e78efc7dd166c4f462ca392b3c4c2.zip |
idl: add File Server Remote VSS Protocol idl
MS-FSRVP preview documents used as reference.
H_ERROR codes should be moved to a more generic file.
Diffstat (limited to 'librpc/wscript_build')
-rw-r--r-- | librpc/wscript_build | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/librpc/wscript_build b/librpc/wscript_build index a94ff8dac4..46570ae76b 100644 --- a/librpc/wscript_build +++ b/librpc/wscript_build @@ -285,6 +285,11 @@ bld.SAMBA_SUBSYSTEM('NDR_COMPRESSION', deps='z LZXPRESS' ) +bld.SAMBA_SUBSYSTEM('NDR_FSRVP', + source='gen_ndr/ndr_fsrvp.c', + public_deps='ndr' + ) + bld.SAMBA_SUBSYSTEM('NDR_DCERPC', source='gen_ndr/ndr_dcerpc.c', public_deps='ndr', @@ -579,12 +584,17 @@ bld.SAMBA_SUBSYSTEM('NDR_IOCTL', public_deps='ndr' ) +bld.SAMBA_SUBSYSTEM('RPC_NDR_FSRVP', + source='gen_ndr/ndr_fsrvp_c.c', + public_deps='dcerpc-binding NDR_FSRVP' + ) + # a grouping library for NDR subsystems that may be used by more than one target bld.SAMBA_LIBRARY('ndr-samba', source=[], deps='''NDR_DRSBLOBS NDR_DRSUAPI NDR_IDMAP NDR_NTLMSSP NDR_SCHANNEL NDR_MGMT NDR_DNSP NDR_EPMAPPER NDR_XATTR NDR_UNIXINFO NDR_NAMED_PIPE_AUTH NDR_DCOM - NDR_NTPRINTING''', + NDR_NTPRINTING NDR_FSRVP''', private_library=True, grouping_library=True ) |