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
1fd2bc52
Commit
1fd2bc52
authored
Oct 24, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stubs for CredEnumerateA/W.
parent
aa657e93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
advapi.c
dlls/advapi32/advapi.c
+17
-0
advapi32.spec
dlls/advapi32/advapi32.spec
+2
-2
No files found.
dlls/advapi32/advapi.c
View file @
1fd2bc52
...
...
@@ -29,6 +29,7 @@
#include "winreg.h"
#include "winternl.h"
#include "winerror.h"
#include "wincred.h"
#include "wine/library.h"
#include "wine/debug.h"
...
...
@@ -292,3 +293,19 @@ DWORD WINAPI CommandLineFromMsiDescriptor( WCHAR *szDescriptor,
FreeLibrary
(
hmsi
);
return
r
;
}
BOOL
WINAPI
CredEnumerateA
(
LPCSTR
filter
,
DWORD
flags
,
DWORD
*
count
,
PCREDENTIALA
**
credentials
)
{
FIXME
(
"(%s, %08x, %p, %p)
\n
"
,
debugstr_a
(
filter
),
flags
,
count
,
credentials
);
return
FALSE
;
}
BOOL
WINAPI
CredEnumerateW
(
LPCWSTR
filter
,
DWORD
flags
,
DWORD
*
count
,
PCREDENTIALW
**
credentials
)
{
FIXME
(
"(%s, %08x, %p, %p)
\n
"
,
debugstr_w
(
filter
),
flags
,
count
,
credentials
);
return
FALSE
;
}
dlls/advapi32/advapi32.spec
View file @
1fd2bc52
...
...
@@ -104,8 +104,8 @@
@ stdcall CreateWellKnownSid(long ptr ptr ptr)
# @ stub CredDeleteA
# @ stub CredDeleteW
# @ stub CredEnumerateA
# @ stub CredEnumerateW
@ stdcall CredEnumerateA(str long ptr ptr)
@ stdcall CredEnumerateW(wstr long ptr ptr)
# @ stub CredFree
# @ stub CredGetSessionTypes
# @ stub CredGetTargetInfoA
...
...
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