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
aa657e93
Commit
aa657e93
authored
Oct 24, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
credui: Add proper parameter names to SSO stubs, and use symbolic return values.
parent
ae89239c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
16 deletions
+20
-16
credui_main.c
dlls/credui/credui_main.c
+20
-16
No files found.
dlls/credui/credui_main.c
View file @
aa657e93
...
...
@@ -378,39 +378,43 @@ DWORD WINAPI CredUIParseUserNameW(PCWSTR pszUserName, PWSTR pszUser,
/******************************************************************************
* CredUIStoreSSOCredA [CREDUI.@]
*/
DWORD
WINAPI
CredUIStoreSSOCredA
(
PCSTR
a
,
PCSTR
b
,
PCSTR
c
,
BOOL
f
)
DWORD
WINAPI
CredUIStoreSSOCredA
(
PCSTR
pszRealm
,
PCSTR
pszUsername
,
PCSTR
pszPassword
,
BOOL
bPersist
)
{
FIXME
(
"(%s, %s, %s, %d)
\n
"
,
debugstr_a
(
a
),
debugstr_a
(
b
),
debugstr_a
(
c
),
f
);
return
0
;
FIXME
(
"(%s, %s, %p, %d)
\n
"
,
debugstr_a
(
pszRealm
),
debugstr_a
(
pszUsername
),
pszPassword
,
bPersist
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* CredUIStoreSSOCredW [CREDUI.@]
*/
DWORD
WINAPI
CredUIStoreSSOCredW
(
PCWSTR
a
,
PCWSTR
b
,
PCWSTR
c
,
BOOL
f
)
DWORD
WINAPI
CredUIStoreSSOCredW
(
PCWSTR
pszRealm
,
PCWSTR
pszUsername
,
PCWSTR
pszPassword
,
BOOL
bPersist
)
{
FIXME
(
"(%s, %s, %s, %d)
\n
"
,
debugstr_w
(
a
),
debugstr_w
(
b
),
debugstr_w
(
c
),
f
);
return
0
;
FIXME
(
"(%s, %s, %p, %d)
\n
"
,
debugstr_w
(
pszRealm
),
debugstr_w
(
pszUsername
),
pszPassword
,
bPersist
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* CredUIReadSSOCredA [CREDUI.@]
*/
DWORD
WINAPI
CredUIReadSSOCredA
(
PCSTR
a
,
PSTR
*
b
)
DWORD
WINAPI
CredUIReadSSOCredA
(
PCSTR
pszRealm
,
PSTR
*
ppszUsername
)
{
FIXME
(
"(%s, %p)
\n
"
,
debugstr_a
(
a
),
b
);
if
(
b
)
*
b
=
NULL
;
return
0
;
FIXME
(
"(%s, %p)
\n
"
,
debugstr_a
(
pszRealm
),
ppszUsername
);
if
(
ppszUsername
)
*
ppszUsername
=
NULL
;
return
ERROR_NOT_FOUND
;
}
/******************************************************************************
* CredUIReadSSOCredW [CREDUI.@]
*/
DWORD
WINAPI
CredUIReadSSOCredW
(
PCWSTR
a
,
PWSTR
*
b
)
DWORD
WINAPI
CredUIReadSSOCredW
(
PCWSTR
pszRealm
,
PWSTR
*
ppszUsername
)
{
FIXME
(
"(%s, %p)
\n
"
,
debugstr_w
(
a
),
b
);
if
(
b
)
*
b
=
NULL
;
return
0
;
FIXME
(
"(%s, %p)
\n
"
,
debugstr_w
(
pszRealm
),
ppszUsername
);
if
(
ppszUsername
)
*
ppszUsername
=
NULL
;
return
ERROR_NOT_FOUND
;
}
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