diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-24 01:24:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-24 01:24:29 +0000 |
commit | c7fd83d0b280810f16f7ef99ba58efb007f93920 (patch) | |
tree | 4a3cb1b009b6a4ed5980a4bc1cd30376c003f0b1 /source4/librpc/idl/epmapper.idl | |
parent | 27b1dbaea64e02eccf07ff6643bffc2991264533 (diff) | |
download | samba-c7fd83d0b280810f16f7ef99ba58efb007f93920.tar.gz samba-c7fd83d0b280810f16f7ef99ba58efb007f93920.tar.bz2 samba-c7fd83d0b280810f16f7ef99ba58efb007f93920.zip |
added the dcerpc remote management interfaces as mgmt.idl, and wrote a
test suite. The test suite dumps all of the interfaces available on
all pipes. There sure are a lot more interfaces on w2k3 than w2k !
(This used to be commit f94bc079902d725b63155d8d2de5bf408c6e7335)
Diffstat (limited to 'source4/librpc/idl/epmapper.idl')
-rw-r--r-- | source4/librpc/idl/epmapper.idl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/librpc/idl/epmapper.idl b/source4/librpc/idl/epmapper.idl index d2e34e4c31..f542d5f42a 100644 --- a/source4/librpc/idl/epmapper.idl +++ b/source4/librpc/idl/epmapper.idl @@ -77,7 +77,7 @@ interface epmapper [in] uint32 num_ents, [in,size_is(num_ents)] epm_entry_t entries[], [in] uint32 replace, - [out] uint32 *status + [out] error_status_t *status ); /**********************/ @@ -85,7 +85,7 @@ interface epmapper void epm_Delete( [in] uint32 num_ents, [in, size_is(num_ents)] epm_entry_t entries[], - [out] uint32 *status + [out] error_status_t *status ); /**********************/ @@ -99,7 +99,7 @@ interface epmapper [in] uint32 max_ents, [out] uint32 num_ents, [out, length_is(num_ents), size_is(max_ents)] epm_entry_t entries[], - [out] uint32 status + [out] error_status_t status ); @@ -117,7 +117,7 @@ interface epmapper [in] uint32 max_towers, [out] uint32 *num_towers, [out, length_is(*num_towers), size_is(max_towers)] twr_p_t towers[], - [out] uint32 *status + [out] error_status_t *status ); @@ -125,14 +125,14 @@ interface epmapper /* Function 0x04 */ void epm_LookupHandleFree( [in, out] policy_handle *entry_handle, - [out] uint32 *status + [out] error_status_t *status ); /**********************/ /* Function 0x05 */ void epm_InqObject( [out] GUID *epm_object, - [out] uint32 *status + [out] error_status_t *status ); @@ -142,6 +142,6 @@ interface epmapper [in] uint32 object_speced, [in] GUID *object, [in] twr_t *tower, - [out] uint32 *status + [out] error_status_t *status ); } |