Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a79ec597
Commit
a79ec597
authored
Oct 23, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 24, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
credui: Add stubs.
parent
79e7e15f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
4 deletions
+44
-4
credui.spec
dlls/credui/credui.spec
+4
-4
credui_main.c
dlls/credui/credui_main.c
+40
-0
No files found.
dlls/credui/credui.spec
View file @
a79ec597
...
@@ -7,10 +7,10 @@
...
@@ -7,10 +7,10 @@
@ stdcall CredUIParseUserNameW(wstr ptr long ptr long)
@ stdcall CredUIParseUserNameW(wstr ptr long ptr long)
@ stub CredUIPromptForCredentialsA
@ stub CredUIPromptForCredentialsA
@ stdcall CredUIPromptForCredentialsW(ptr wstr ptr long ptr long ptr long ptr long)
@ stdcall CredUIPromptForCredentialsW(ptr wstr ptr long ptr long ptr long ptr long)
@ st
ub CredUIReadSSOCredA
@ st
dcall CredUIReadSSOCredA(str ptr)
@ st
ub CredUIReadSSOCredW
@ st
dcall CredUIReadSSOCredW(wstr ptr)
@ st
ub CredUIStoreSSOCredA
@ st
dcall CredUIStoreSSOCredA(str str str long)
@ st
ub CredUIStoreSSOCredW
@ st
dcall CredUIStoreSSOCredW(wstr wstr wstr long)
@ stub DllCanUnloadNow
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ stub DllGetClassObject
@ stub DllRegisterServer
@ stub DllRegisterServer
...
...
dlls/credui/credui_main.c
View file @
a79ec597
...
@@ -249,3 +249,43 @@ DWORD WINAPI CredUIParseUserNameW(PCWSTR pszUserName, PWSTR pszUser,
...
@@ -249,3 +249,43 @@ DWORD WINAPI CredUIParseUserNameW(PCWSTR pszUserName, PWSTR pszUser,
return
ERROR_SUCCESS
;
return
ERROR_SUCCESS
;
}
}
/******************************************************************************
* CredUIStoreSSOCredA [CREDUI.@]
*/
DWORD
WINAPI
CredUIStoreSSOCredA
(
PCSTR
a
,
PCSTR
b
,
PCSTR
c
,
BOOL
f
)
{
FIXME
(
"(%s, %s, %s, %d)
\n
"
,
debugstr_a
(
a
),
debugstr_a
(
b
),
debugstr_a
(
c
),
f
);
return
0
;
}
/******************************************************************************
* CredUIStoreSSOCredW [CREDUI.@]
*/
DWORD
WINAPI
CredUIStoreSSOCredW
(
PCWSTR
a
,
PCWSTR
b
,
PCWSTR
c
,
BOOL
f
)
{
FIXME
(
"(%s, %s, %s, %d)
\n
"
,
debugstr_w
(
a
),
debugstr_w
(
b
),
debugstr_w
(
c
),
f
);
return
0
;
}
/******************************************************************************
* CredUIReadSSOCredA [CREDUI.@]
*/
DWORD
WINAPI
CredUIReadSSOCredA
(
PCSTR
a
,
PSTR
*
b
)
{
FIXME
(
"(%s, %p)
\n
"
,
debugstr_a
(
a
),
b
);
if
(
b
)
*
b
=
NULL
;
return
0
;
}
/******************************************************************************
* CredUIReadSSOCredW [CREDUI.@]
*/
DWORD
WINAPI
CredUIReadSSOCredW
(
PCWSTR
a
,
PWSTR
*
b
)
{
FIXME
(
"(%s, %p)
\n
"
,
debugstr_w
(
a
),
b
);
if
(
b
)
*
b
=
NULL
;
return
0
;
}
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