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
0ec0f075
Commit
0ec0f075
authored
Jul 13, 2016
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
credui: Add a stub implementation of CredUIPromptForWindowsCredentialsW.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
33cb7920
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
credui.spec
dlls/credui/credui.spec
+1
-0
credui_main.c
dlls/credui/credui_main.c
+12
-0
wincred.h
include/wincred.h
+4
-0
No files found.
dlls/credui/credui.spec
View file @
0ec0f075
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
@ 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)
@ stdcall CredUIPromptForWindowsCredentialsW(ptr long ptr ptr long ptr ptr ptr long)
@ stdcall CredUIReadSSOCredA(str ptr)
@ stdcall CredUIReadSSOCredA(str ptr)
@ stdcall CredUIReadSSOCredW(wstr ptr)
@ stdcall CredUIReadSSOCredW(wstr ptr)
@ stdcall CredUIStoreSSOCredA(str str str long)
@ stdcall CredUIStoreSSOCredA(str str str long)
...
...
dlls/credui/credui_main.c
View file @
0ec0f075
...
@@ -929,3 +929,15 @@ ULONG SEC_ENTRY SspiPromptForCredentialsW( PCWSTR target, void *info,
...
@@ -929,3 +929,15 @@ ULONG SEC_ENTRY SspiPromptForCredentialsW( PCWSTR target, void *info,
return
ret
;
return
ret
;
}
}
/******************************************************************************
* CredUIPromptForWindowsCredentialsW [CREDUI.@]
*/
DWORD
WINAPI
CredUIPromptForWindowsCredentialsW
(
CREDUI_INFOW
*
info
,
DWORD
error
,
ULONG
*
package
,
const
void
*
in_buf
,
ULONG
in_buf_size
,
void
**
out_buf
,
ULONG
*
out_buf_size
,
BOOL
*
save
,
DWORD
flags
)
{
FIXME
(
"(%p, %u, %p, %p, %u, %p, %p, %p, %08x) stub
\n
"
,
info
,
error
,
package
,
in_buf
,
in_buf_size
,
out_buf
,
out_buf_size
,
save
,
flags
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
include/wincred.h
View file @
0ec0f075
...
@@ -271,6 +271,8 @@ WINADVAPI BOOL WINAPI CredWriteA(PCREDENTIALA,DWORD);
...
@@ -271,6 +271,8 @@ WINADVAPI BOOL WINAPI CredWriteA(PCREDENTIALA,DWORD);
WINADVAPI
BOOL
WINAPI
CredWriteW
(
PCREDENTIALW
,
DWORD
);
WINADVAPI
BOOL
WINAPI
CredWriteW
(
PCREDENTIALW
,
DWORD
);
#define CredWrite WINELIB_NAME_AW(CredWrite)
#define CredWrite WINELIB_NAME_AW(CredWrite)
BOOL
WINAPI
CredPackAuthenticationBufferW
(
DWORD
,
LPWSTR
,
LPWSTR
,
PBYTE
,
DWORD
*
);
BOOL
WINAPI
CredUnPackAuthenticationBufferW
(
DWORD
,
PVOID
,
DWORD
,
LPWSTR
,
DWORD
*
,
LPWSTR
,
DWORD
*
,
LPWSTR
,
DWORD
*
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsW
(
PCWSTR
,
PCtxtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsW
(
PCWSTR
,
PCtxtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsA
(
PCSTR
,
PCtxtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsA
(
PCSTR
,
PCtxtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
PBOOL
,
DWORD
);
#define CredUICmdLinePromptForCredentials WINELIB_NAME_AW(CredUICmdLinePromptForCredentials)
#define CredUICmdLinePromptForCredentials WINELIB_NAME_AW(CredUICmdLinePromptForCredentials)
...
@@ -283,6 +285,8 @@ DWORD WINAPI CredUIParseUserNameA(PCSTR,PSTR,ULONG,PSTR,ULONG);
...
@@ -283,6 +285,8 @@ DWORD WINAPI CredUIParseUserNameA(PCSTR,PSTR,ULONG,PSTR,ULONG);
DWORD
WINAPI
CredUIPromptForCredentialsW
(
PCREDUI_INFOW
,
PCWSTR
,
PCtxtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUIPromptForCredentialsW
(
PCREDUI_INFOW
,
PCWSTR
,
PCtxtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUIPromptForCredentialsA
(
PCREDUI_INFOA
,
PCSTR
,
PCtxtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUIPromptForCredentialsA
(
PCREDUI_INFOA
,
PCSTR
,
PCtxtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
PBOOL
,
DWORD
);
#define CredUIPromptForCredentials WINELIB_NAME_AW(CredUIPromptForCredentials)
#define CredUIPromptForCredentials WINELIB_NAME_AW(CredUIPromptForCredentials)
DWORD
WINAPI
CredUIPromptForWindowsCredentialsW
(
PCREDUI_INFOW
,
DWORD
,
ULONG
*
,
LPCVOID
,
ULONG
,
LPVOID
*
,
ULONG
*
,
BOOL
*
,
DWORD
);
DWORD
WINAPI
CredUIStoreSSOCredW
(
PCWSTR
,
PCWSTR
,
PCWSTR
,
BOOL
);
DWORD
WINAPI
CredUIStoreSSOCredW
(
PCWSTR
,
PCWSTR
,
PCWSTR
,
BOOL
);
/* Note: no CredUIStoreSSOCredA in PSDK header */
/* Note: no CredUIStoreSSOCredA in PSDK header */
DWORD
WINAPI
CredUIReadSSOCredW
(
PCWSTR
,
PWSTR
*
);
DWORD
WINAPI
CredUIReadSSOCredW
(
PCWSTR
,
PWSTR
*
);
...
...
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