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
4485b450
Commit
4485b450
authored
Feb 07, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
credui: Better match the PSDK types and fix the winapi_check warnings.
parent
08734d5b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
5 deletions
+24
-5
credui_main.c
dlls/credui/credui_main.c
+1
-1
wincred.h
include/wincred.h
+4
-4
win32.api
tools/winapi/win32.api
+19
-0
No files found.
dlls/credui/credui_main.c
View file @
4485b450
...
...
@@ -140,7 +140,7 @@ DWORD WINAPI CredUIPromptForCredentialsW(PCREDUI_INFOW pUIInfo,
PWSTR
pszUsername
,
ULONG
ulUsernameMaxChars
,
PWSTR
pszPassword
,
ULONG
ulPasswordMaxChars
,
BOOL
*
pfSave
,
ULONG
ulPasswordMaxChars
,
PBOOL
pfSave
,
DWORD
dwFlags
)
{
INT_PTR
ret
;
...
...
include/wincred.h
View file @
4485b450
...
...
@@ -87,8 +87,8 @@ typedef struct _CREDUI_INFOW
#define CREDUI_FLAGS_USERNAME_TARGET_CREDENTIALS 0x00080000
#define CREDUI_FLAGS_KEEP_USERNAME 0x00100000
DWORD
WINAPI
CredUICmdLinePromptForCredentialsW
(
PCWSTR
,
PC
WSTR
,
PCtxtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
BOOL
*
,
DWORD
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsA
(
PCSTR
,
PC
STR
,
PCtxtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
BOOL
*
,
DWORD
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsW
(
PCWSTR
,
PC
txtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsA
(
PCSTR
,
PC
txtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
PBOOL
,
DWORD
);
#define CredUICmdLinePromptForCredentials WINELIB_NAME_AW(CredUICmdLinePromptForCredentials)
DWORD
WINAPI
CredUIConfirmCredentialsW
(
PCWSTR
,
BOOL
);
DWORD
WINAPI
CredUIConfirmCredentialsA
(
PCSTR
,
BOOL
);
...
...
@@ -96,8 +96,8 @@ DWORD WINAPI CredUIConfirmCredentialsA(PCSTR,BOOL);
DWORD
WINAPI
CredUIParseUserNameW
(
PCWSTR
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
);
DWORD
WINAPI
CredUIParseUserNameA
(
PCSTR
,
PSTR
,
ULONG
,
PSTR
,
ULONG
);
#define CredUIParseUserName WINELIB_NAME_AW(CredUIParseUserName)
DWORD
WINAPI
CredUIPromptForCredentialsW
(
PCREDUI_INFOW
,
PCWSTR
,
PCtxtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
BOOL
*
,
DWORD
);
DWORD
WINAPI
CredUIPromptForCredentialsA
(
PCREDUI_INFOA
,
PCSTR
,
PCtxtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
BOOL
*
,
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
);
#define CredUIPromptForCredentials WINELIB_NAME_AW(CredUIPromptForCredentials)
DWORD
WINAPI
CredUIStoreSSOCredW
(
PCWSTR
,
PCWSTR
,
PCWSTR
,
BOOL
);
/* Note: no CredUIStoreSSOCredA in PSDK header */
...
...
tools/winapi/win32.api
View file @
4485b450
...
...
@@ -634,6 +634,25 @@ ULONG_PTR
LPDWORD
PFNPROPSHEETUI
%%credui.dll
%long
BOOL
DWORD
ULONG
%ptr
PBOOL
PCREDUI_INFOW
PCtxtHandle
%wstr
PCWSTR
PWSTR
%%crtdll.dll
%long
...
...
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