diff options
author | Günther Deschner <gd@samba.org> | 2007-10-16 11:30:58 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:43:04 +0100 |
commit | f1f746875c9585f985e5fcd89d3830d62f599c8f (patch) | |
tree | 9df3a11964fda9ee4755843dd809f37680b9eb0f /source4/librpc | |
parent | c6dd81a15cbfb4241b5cfe6ced23b043d6779de8 (diff) | |
download | samba-f1f746875c9585f985e5fcd89d3830d62f599c8f.tar.gz samba-f1f746875c9585f985e5fcd89d3830d62f599c8f.tar.bz2 samba-f1f746875c9585f985e5fcd89d3830d62f599c8f.zip |
r25664: Use [out] pointers in frsapi idl.
Guenther
(This used to be commit 2114103aedbe2134624caa3aba42b6f7721e6d45)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/frsapi.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/librpc/idl/frsapi.idl b/source4/librpc/idl/frsapi.idl index c09acdaf92..bc49a06e23 100644 --- a/source4/librpc/idl/frsapi.idl +++ b/source4/librpc/idl/frsapi.idl @@ -34,9 +34,9 @@ interface frsapi /****************/ /* Function 0x05 */ WERROR frsapi_GetDsPollingIntervalW( - [out] uint32 CurrentInterval, - [out] uint32 DsPollingLongInterval, - [out] uint32 DsPollingShortInterval + [out] uint32 *CurrentInterval, + [out] uint32 *DsPollingLongInterval, + [out] uint32 *DsPollingShortInterval ); /****************/ |