Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
c1614094
Commit
c1614094
authored
Mar 20, 2016
by
Austin English
Committed by
Alexandre Julliard
Mar 24, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winscard: Add stubs for SCardListReadersA/W.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9d91fce4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
4 deletions
+16
-4
winscard.c
dlls/winscard/winscard.c
+12
-0
winscard.spec
dlls/winscard/winscard.spec
+2
-2
winscard.h
include/winscard.h
+2
-2
No files found.
dlls/winscard/winscard.c
View file @
c1614094
...
...
@@ -129,3 +129,15 @@ void WINAPI SCardReleaseStartedEvent(void)
{
FIXME
(
"stub
\n
"
);
}
LONG
WINAPI
SCardListReadersA
(
SCARDCONTEXT
context
,
const
CHAR
*
groups
,
CHAR
*
readers
,
DWORD
*
buflen
)
{
FIXME
(
"(%lx, %s, %p, %p) stub
\n
"
,
context
,
debugstr_a
(
groups
),
readers
,
buflen
);
return
SCARD_E_NO_READERS_AVAILABLE
;
}
LONG
WINAPI
SCardListReadersW
(
SCARDCONTEXT
context
,
const
WCHAR
*
groups
,
WCHAR
*
readers
,
DWORD
*
buflen
)
{
FIXME
(
"(%lx, %s, %p, %p) stub
\n
"
,
context
,
debugstr_w
(
groups
),
readers
,
buflen
);
return
SCARD_E_NO_READERS_AVAILABLE
;
}
dlls/winscard/winscard.spec
View file @
c1614094
...
...
@@ -40,8 +40,8 @@
@ stub SCardListInterfacesW
@ stub SCardListReaderGroupsA
@ stub SCardListReaderGroupsW
@ st
ub SCardListReadersA
@ st
ub SCardListReadersW
@ st
dcall SCardListReadersA(long str ptr ptr)
@ st
dcall SCardListReadersW(long wstr ptr ptr)
@ stub SCardLocateCardsA
@ stub SCardLocateCardsByATRA
@ stub SCardLocateCardsByATRW
...
...
include/winscard.h
View file @
c1614094
...
...
@@ -120,8 +120,8 @@ LONG WINAPI SCardListCardsW(SCARDCONTEXT,LPCBYTE,LPCGUID,DWORD,LPWSTR,LPD
LONG
WINAPI
SCardListInterfacesA
(
SCARDCONTEXT
,
LPCSTR
,
LPGUID
,
LPDWORD
);
LONG
WINAPI
SCardListInterfacesW
(
SCARDCONTEXT
,
LPCWSTR
,
LPGUID
,
LPDWORD
);
#define SCardListInterfaces WINELIB_NAME_AW(SCardListInterfaces)
LONG
WINAPI
SCardListReadersA
(
SCARDCONTEXT
,
LPCSTR
,
LPSTR
,
LPDWORD
);
LONG
WINAPI
SCardListReadersW
(
SCARDCONTEXT
,
LPCWSTR
,
LPWSTR
,
LPDWORD
);
LONG
WINAPI
SCardListReadersA
(
SCARDCONTEXT
,
const
CHAR
*
,
CHAR
*
,
DWORD
*
);
LONG
WINAPI
SCardListReadersW
(
SCARDCONTEXT
,
const
WCHAR
*
,
WCHAR
*
,
DWORD
*
);
#define SCardListReaders WINELIB_NAME_AW(SCardListReaders)
LONG
WINAPI
SCardListReaderGroupsA
(
SCARDCONTEXT
,
LPSTR
,
LPDWORD
);
LONG
WINAPI
SCardListReaderGroupsW
(
SCARDCONTEXT
,
LPWSTR
,
LPDWORD
);
...
...
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