summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/atsvc.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/atsvc.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/atsvc.idl')
-rw-r--r--source4/librpc/idl/atsvc.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/librpc/idl/atsvc.idl b/source4/librpc/idl/atsvc.idl
index 51904610b2..e1eb46e7e0 100644
--- a/source4/librpc/idl/atsvc.idl
+++ b/source4/librpc/idl/atsvc.idl
@@ -68,13 +68,13 @@
atsvc_DaysOfMonth days_of_month;
atsvc_DaysOfWeek days_of_week;
atsvc_Flags flags;
- unistr *command;
+ [string,charset(UTF16)] uint16 *command;
} atsvc_JobInfo;
/******************/
/* Function: 0x00 */
NTSTATUS atsvc_JobAdd(
- [in,unique] unistr *servername,
+ [in,unique,string,charset(UTF16)] uint16 *servername,
[in] atsvc_JobInfo *job_info,
[out] uint32 job_id
);
@@ -82,7 +82,7 @@
/******************/
/* Function: 0x01 */
NTSTATUS atsvc_JobDel(
- [in,unique] unistr *servername,
+ [in,unique,string,charset(UTF16)] uint16 *servername,
[in] uint32 min_job_id,
[in] uint32 max_job_id
);
@@ -93,7 +93,7 @@
atsvc_DaysOfMonth days_of_month;
atsvc_DaysOfWeek days_of_week;
atsvc_Flags flags;
- unistr *command;
+ [string,charset(UTF16)] uint16 *command;
} atsvc_JobEnumInfo;
typedef struct {
@@ -104,7 +104,7 @@
/******************/
/* Function: 0x02 */
NTSTATUS atsvc_JobEnum(
- [in,unique] unistr *servername,
+ [in,unique,string,charset(UTF16)] uint16 *servername,
[in,out] atsvc_enum_ctr *ctr,
[in] uint32 preferred_max_len,
[out] uint32 total_entries,
@@ -114,7 +114,7 @@
/******************/
/* Function: 0x03 */
[public] NTSTATUS atsvc_JobGetInfo(
- [in,unique] unistr *servername,
+ [in,unique,string,charset(UTF16)] uint16 *servername,
[in] uint32 job_id,
[out,unique] atsvc_JobInfo *job_info
);