diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-17 21:40:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:23 -0500 |
commit | 82dfe0b29b4d090a20e0bc07a22ee47a5f38330a (patch) | |
tree | 943ea812dc54e9c40249117fceab250d6f5ecf67 /source4/librpc/idl | |
parent | cd39847e815bea73b6bcae63541dd36b1715aa6c (diff) | |
download | samba-82dfe0b29b4d090a20e0bc07a22ee47a5f38330a.tar.gz samba-82dfe0b29b4d090a20e0bc07a22ee47a5f38330a.tar.bz2 samba-82dfe0b29b4d090a20e0bc07a22ee47a5f38330a.zip |
r7702: Implement [charset()] attribute.
(This used to be commit 7012e10bb6252a7e602e80f05c914a783610088c)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/echo.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/echo.idl b/source4/librpc/idl/echo.idl index d841a0974a..a6f52d9d15 100644 --- a/source4/librpc/idl/echo.idl +++ b/source4/librpc/idl/echo.idl @@ -34,8 +34,8 @@ interface rpcecho /* test strings */ void echo_TestCall ( - [in] unistr *s1, - [out] unistr *s2 + [in,string,charset(CH_UTF16)] uint16 *s1, + [out,string,charset(CH_UTF16)] uint16 *s2 ); |