summaryrefslogtreecommitdiff
path: root/source3/librpc/idl/unixinfo.idl
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-09-06 18:13:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:43:56 -0500
commita7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433 (patch)
tree730aafce71808aafe621d00a312810d95744f742 /source3/librpc/idl/unixinfo.idl
parent48450d97a56b43febb3853aba8caea4dd2cdffe1 (diff)
downloadsamba-a7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433.tar.gz
samba-a7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433.tar.bz2
samba-a7be2ec7c5eb8bda76eaec0eaff7e1a7b2b39433.zip
r18187: Replace copy of idl files with a svn:externals link.
Will fix the build_idl.sh script to only process the files we are concerned with in this branch. (This used to be commit 647ed21b098e8fe6513040de7a540fe77fa0b37e)
Diffstat (limited to 'source3/librpc/idl/unixinfo.idl')
-rw-r--r--source3/librpc/idl/unixinfo.idl55
1 files changed, 0 insertions, 55 deletions
diff --git a/source3/librpc/idl/unixinfo.idl b/source3/librpc/idl/unixinfo.idl
deleted file mode 100644
index 2b5b60908f..0000000000
--- a/source3/librpc/idl/unixinfo.idl
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- Unixinfo interface definition
-*/
-
-[ uuid("9c54e310-a955-4885-bd31-78787147dfa6"),
- version(0.0),
- endpoint("ncacn_np:[\\pipe\\unixinfo]", "ncacn_ip_tcp:", "ncalrpc:"),
- pointer_default(unique),
- helpstring("Unixinfo specific stuff"),
- depends(security),
- keepref
-] interface unixinfo
-{
- /******************/
- /* Function: 0x00 */
- NTSTATUS unixinfo_SidToUid (
- [in] dom_sid sid,
- [out,ref] hyper *uid
- );
-
- /******************/
- /* Function: 0x01 */
- NTSTATUS unixinfo_UidToSid (
- [in] hyper uid,
- [out] dom_sid *sid
- );
-
- /******************/
- /* Function: 0x02 */
- NTSTATUS unixinfo_SidToGid (
- [in] dom_sid sid,
- [out,ref] hyper *gid
- );
-
- /******************/
- /* Function: 0x03 */
- NTSTATUS unixinfo_GidToSid (
- [in] hyper gid,
- [out,ref] dom_sid *sid
- );
-
- typedef struct {
- NTSTATUS status;
- [string,charset(UTF8)] uint8 *homedir;
- [string,charset(UTF8)] uint8 *shell;
- } unixinfo_GetPWUidInfo;
-
- /******************/
- /* Function: 0x04 */
- NTSTATUS unixinfo_GetPWUid (
- [in,out,ref,range(0,1023)] uint32 *count,
- [in,size_is(*count)] hyper uids[],
- [out,size_is(*count)] unixinfo_GetPWUidInfo *infos
- );
-}