Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e3bf5a1d
Commit
e3bf5a1d
authored
Mar 08, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 08, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added msident.idl.
parent
a3709bad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
96 additions
and
0 deletions
+96
-0
.gitignore
.gitignore
+1
-0
Makefile.in
include/Makefile.in
+1
-0
msident.idl
include/msident.idl
+94
-0
No files found.
.gitignore
View file @
e3bf5a1d
...
...
@@ -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
...
...
include/Makefile.in
View file @
e3bf5a1d
...
...
@@ -60,6 +60,7 @@ PUBLIC_IDL_H_SRCS = \
msdadc.idl
\
mshtmhst.idl
\
mshtml.idl
\
msident.idl
\
msinkaut.idl
\
mstask.idl
\
msxml.idl
\
...
...
include/msident.idl
0 → 100644
View file @
e3bf5a1d
/*
*
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
-
1
d1b
-
11
d2
-
b21a
-
00
c04fa357fa
),
]
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
-
1
d1b
-
11
d2
-
b21a
-
00
c04fa357fa
),
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
-
1
d1b
-
11
d2
-
b21a
-
00
c04fa357fa
)
]
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);"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment