diff options
author | Volker Lendecke <vl@samba.org> | 2009-09-06 14:47:06 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-09-07 01:28:32 +0200 |
commit | 7159060450e4d5cd3d71e6a5c7837dcd648a6220 (patch) | |
tree | 84b5b2c3514d472cc32555682864bf24327cdf70 /source3/librpc/idl | |
parent | d9b7fd59b026fbad11263e8a018d654325ede0e4 (diff) | |
download | samba-7159060450e4d5cd3d71e6a5c7837dcd648a6220.tar.gz samba-7159060450e4d5cd3d71e6a5c7837dcd648a6220.tar.bz2 samba-7159060450e4d5cd3d71e6a5c7837dcd648a6220.zip |
s3:winbind: Convert WINBINDD_SET_MAPPING to the new API
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r-- | source3/librpc/idl/wbint.idl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/librpc/idl/wbint.idl b/source3/librpc/idl/wbint.idl index 05bd7b1fb3..642d7f6636 100644 --- a/source3/librpc/idl/wbint.idl +++ b/source3/librpc/idl/wbint.idl @@ -146,4 +146,16 @@ interface wbint NTSTATUS wbint_CheckMachineAccount( ); + + typedef [public] enum { + WBINT_ID_TYPE_NOT_SPECIFIED, + WBINT_ID_TYPE_UID, + WBINT_ID_TYPE_GID + } wbint_IdType; + + NTSTATUS wbint_SetMapping( + [in] dom_sid *sid, + [in] wbint_IdType type, + [in] hyper id + ); }
\ No newline at end of file |