summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/dfs.idl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-10-16 17:17:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:44:49 -0500
commita0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f (patch)
tree04b2c1c837d70b63130e0c32e20a84e50b8ffe12 /source4/librpc/idl/dfs.idl
parentc008f951cff74e5218c7ef7bbc90487433ab72c5 (diff)
downloadsamba-a0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f.tar.gz
samba-a0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f.tar.bz2
samba-a0f6e35c1fcaf57cbfabc7d7af8f86b87a51215f.zip
r11098: Replace string with [string]
(This used to be commit 1ac8c96349c1241f75f7a133cfefa0df5aaae18e)
Diffstat (limited to 'source4/librpc/idl/dfs.idl')
-rw-r--r--source4/librpc/idl/dfs.idl44
1 files changed, 22 insertions, 22 deletions
diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl
index 579d855b89..288dd39f2e 100644
--- a/source4/librpc/idl/dfs.idl
+++ b/source4/librpc/idl/dfs.idl
@@ -20,19 +20,19 @@
/******************/
/* Function: 0x01 */
WERROR dfs_Add (
- [in] unistr *path,
- [in] unistr *server,
- [in,unique] unistr *share,
- [in,unique] unistr *comment,
+ [in,string,charset(UTF16)] uint16 *path,
+ [in,string,charset(UTF16)] uint16 *server,
+ [in,unique,string,charset(UTF16)] uint16 *share,
+ [in,unique,string,charset(UTF16)] uint16 *comment,
[in] uint32 flags
);
/******************/
/* Function: 0x02 */
WERROR dfs_Remove (
- [in] unistr *path,
- [in,unique] unistr *server,
- [in,unique] unistr *share
+ [in,string,charset(UTF16)] uint16 *path,
+ [in,unique,string,charset(UTF16)] uint16 *server,
+ [in,unique,string,charset(UTF16)] uint16 *share
);
/******************/
@@ -46,33 +46,33 @@
} dfs_Info0;
typedef struct {
- unistr *path;
+ [string,charset(UTF16)] uint16 *path;
} dfs_Info1;
typedef struct {
- unistr *path;
- unistr *comment;
+ [string,charset(UTF16)] uint16 *path;
+ [string,charset(UTF16)] uint16 *comment;
uint32 state;
uint32 num_stores;
} dfs_Info2;
typedef struct {
uint32 state;
- unistr *server;
- unistr *share;
+ [string,charset(UTF16)] uint16 *server;
+ [string,charset(UTF16)] uint16 *share;
} dfs_StorageInfo;
typedef struct {
- unistr *path;
- unistr *comment;
+ [string,charset(UTF16)] uint16 *path;
+ [string,charset(UTF16)] uint16 *comment;
uint32 state;
uint32 num_stores;
[size_is(num_stores)] dfs_StorageInfo *stores;
} dfs_Info3;
typedef struct {
- unistr *path;
- unistr *comment;
+ [string,charset(UTF16)] uint16 *path;
+ [string,charset(UTF16)] uint16 *comment;
uint32 state;
uint32 timeout;
GUID guid;
@@ -81,7 +81,7 @@
} dfs_Info4;
typedef struct {
- unistr *comment;
+ [string,charset(UTF16)] uint16 *comment;
} dfs_Info100;
typedef struct {
@@ -93,12 +93,12 @@
} dfs_Info102;
typedef struct {
- unistr *dom_root;
+ [string,charset(UTF16)] uint16 *dom_root;
} dfs_Info200;
typedef struct {
uint32 flags;
- unistr *dom_root;
+ [string,charset(UTF16)] uint16 *dom_root;
} dfs_Info300;
typedef union {
@@ -113,9 +113,9 @@
} dfs_Info;
WERROR dfs_GetInfo (
- [in] unistr *path,
- [in,unique] unistr *server,
- [in,unique] unistr *share,
+ [in,string,charset(UTF16)] uint16 *path,
+ [in,unique,string,charset(UTF16)] uint16 *server,
+ [in,unique,string,charset(UTF16)] uint16 *share,
[in] uint32 level,
[out,switch_is(level)] dfs_Info *info
);