diff options
author | Günther Deschner <gd@samba.org> | 2007-10-16 11:16:35 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:43:04 +0100 |
commit | c6dd81a15cbfb4241b5cfe6ced23b043d6779de8 (patch) | |
tree | e9b9f5226d5eaa2c7bbb1bbf88f0701af585897a /source4 | |
parent | 256b839ecc86e341e9d4a4a867dc821e8ca4d747 (diff) | |
download | samba-c6dd81a15cbfb4241b5cfe6ced23b043d6779de8.tar.gz samba-c6dd81a15cbfb4241b5cfe6ced23b043d6779de8.tar.bz2 samba-c6dd81a15cbfb4241b5cfe6ced23b043d6779de8.zip |
r25663: Add frsapi_SetDsPollingIntervalW and frsapi_GetDsPollingIntervalW idl.
Guenther
(This used to be commit 109e05b5117b1722a190765f84563cea24273de1)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/frsapi.idl | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/source4/librpc/idl/frsapi.idl b/source4/librpc/idl/frsapi.idl index 07a26bb516..c09acdaf92 100644 --- a/source4/librpc/idl/frsapi.idl +++ b/source4/librpc/idl/frsapi.idl @@ -25,11 +25,19 @@ interface frsapi /****************/ /* Function 0x04 */ - void FRSAPI_SET_DS_POLLING_INTERVAL_W(); + WERROR frsapi_SetDsPollingIntervalW( + [in] uint32 CurrentInterval, + [in] uint32 DsPollingLongInterval, + [in] uint32 DsPollingShortInterval + ); - /****************/ - /* Function 0x05 */ - void FRSAPI_GET_DS_POLLING_INTERVAL_W(); + /****************/ + /* Function 0x05 */ + WERROR frsapi_GetDsPollingIntervalW( + [out] uint32 CurrentInterval, + [out] uint32 DsPollingLongInterval, + [out] uint32 DsPollingShortInterval + ); /****************/ /* Function 0x06 */ |