From e3bf5a1daa51295abc2f1423e3b7962601ae0b2f Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Thu, 8 Mar 2012 12:25:56 +0100 Subject: [PATCH] include: Added msident.idl. --- .gitignore | 1 + include/Makefile.in | 1 + include/msident.idl | 94 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100644 include/msident.idl diff --git a/.gitignore b/.gitignore index f0fcf66bf57..d96c9544d60 100644 --- a/.gitignore +++ b/.gitignore @@ -192,6 +192,7 @@ include/msctf.h include/msdadc.h include/mshtmhst.h include/mshtml.h +include/msident.h include/msinkaut.h include/mstask.h include/msxml.h diff --git a/include/Makefile.in b/include/Makefile.in index 5ffc5e89f30..fa6f8379f02 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -60,6 +60,7 @@ PUBLIC_IDL_H_SRCS = \ msdadc.idl \ mshtmhst.idl \ mshtml.idl \ + msident.idl \ msinkaut.idl \ mstask.idl \ msxml.idl \ diff --git a/include/msident.idl b/include/msident.idl new file mode 100644 index 00000000000..fad8bd585d0 --- /dev/null +++ b/include/msident.idl @@ -0,0 +1,94 @@ +/* + * Copyright 2012 Jacek Caban for CodeWeavers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#ifndef DO_NO_IMPORTS +import "unknwn.idl"; +import "ocidl.idl"; +import "oleidl.idl"; +import "oaidl.idl"; +#endif + +cpp_quote("#define E_IDENTITIES_DISABLED _HRESULT_TYPEDEF_(0x80007110)") +cpp_quote("#define S_IDENTITIES_DISABLED _HRESULT_TYPEDEF_(0x00007110)") +cpp_quote("#define E_NO_CURRENT_IDENTITY _HRESULT_TYPEDEF_(0x80007111)") +cpp_quote("#define E_USER_CANCELLED _HRESULT_TYPEDEF_(0x80007112)") +cpp_quote("#define E_PROCESS_CANCELLED_SWITCH _HRESULT_TYPEDEF_(0x80007113)") +cpp_quote("#define E_IDENTITY_NOT_FOUND _HRESULT_TYPEDEF_(0x80007114)") +cpp_quote("#define E_IDENTITY_EXISTS _HRESULT_TYPEDEF_(0x80007115)") +cpp_quote("#define E_IDENTITY_CHANGING _HRESULT_TYPEDEF_(0x80007116)") + +[ + uuid(a9ae6c8e-1d1b-11d2-b21a-00c04fa357fa), +] +interface IUserIdentity : IUnknown +{ + HRESULT GetCookie([out] GUID *puidCookie); + + HRESULT GetName( + [in] WCHAR *pszName, + [in] ULONG ulBuffSize); + + [local] + HRESULT OpenIdentityRegKey( + [in]DWORD dwDesiredAccess, + [out] HKEY *phKey); + + HRESULT GetIdentityFolder( + [in] DWORD dwFlags, + [in] WCHAR *pszPath, + [in] ULONG ulBuffSize); + +cpp_quote("#define GIF_ROAMING_FOLDER 0x0001") +cpp_quote("#define GIF_NON_ROAMING_FOLDER 0x0002") +} + +[ + uuid(a9ae6c8f-1d1b-11d2-b21a-00c04fa357fa), + odl +] +interface IEnumUserIdentity : IUnknown +{ + HRESULT Next( + [in] ULONG celt, + [out, size_is(celt), length_is(*pceltFetched)] IUnknown **rgelt, + [out] ULONG *pceltFetched); + + HRESULT Skip([in] ULONG celt); + HRESULT Reset(); + HRESULT Clone([out] IEnumUserIdentity **ppenum); + HRESULT GetCount([out] ULONG *pnCount); +} + +[ + uuid(a9ae6c90-1d1b-11d2-b21a-00c04fa357fa) +] +interface IUserIdentityManager : IUnknown +{ + HRESULT EnumIdentities([out] IEnumUserIdentity **ppEnumUser); + HRESULT ManageIdentities([in] HWND hwndParent, [in] DWORD dwFlags); + +cpp_quote("#define UIMI_CREATE_NEW_IDENTITY 0x0001") + HRESULT Logon([in] HWND hwndParent, [in] DWORD dwFlags, [out] IUserIdentity **ppIdentity); + +cpp_quote("#define UIL_FORCE_UI 0x80000001") + HRESULT Logoff([in] HWND hwndParent); + + HRESULT GetIdentityByCookie([in] GUID *uidCookie, [out] IUserIdentity **ppIdentity); +} + +cpp_quote("DEFINE_GUID(CLSID_UserIdentityManager, 0xa9ae6c91,0x1d1b,0x11d2,0xb2,0x1a,0x00,0xc0,0x4f,0xa3,0x57,0xfa);")