mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[WINSCARD] Sync with Wine Staging 1.7.47. CORE-9924
svn path=/trunk/; revision=68506
This commit is contained in:
parent
8bd6a81c1c
commit
bc0088d758
3 changed files with 13 additions and 29 deletions
|
@ -443,34 +443,6 @@ SCardListReaderGroupsW(SCARDCONTEXT hContext,
|
|||
return SCARD_F_UNKNOWN_ERROR;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
LONG
|
||||
WINAPI
|
||||
SCardListReadersA(SCARDCONTEXT Context,
|
||||
LPCSTR mszGroups,
|
||||
LPSTR mszReaders,
|
||||
LPDWORD pcchReaders)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return SCARD_F_UNKNOWN_ERROR;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
LONG
|
||||
WINAPI
|
||||
SCardListReadersW(SCARDCONTEXT Context,
|
||||
LPCWSTR mszGroups,
|
||||
LPWSTR mszReaders,
|
||||
LPDWORD pcchReaders)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return SCARD_F_UNKNOWN_ERROR;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -123,3 +123,15 @@ void WINAPI SCardReleaseStartedEvent(void)
|
|||
{
|
||||
FIXME("stub\n");
|
||||
}
|
||||
|
||||
LONG WINAPI SCardListReadersA(SCARDCONTEXT context, LPCSTR groups, LPSTR readers, LPDWORD buflen)
|
||||
{
|
||||
FIXME("(%lx, %s, %p, %p) stub\n", context, debugstr_a(groups), readers, buflen);
|
||||
return SCARD_F_INTERNAL_ERROR;
|
||||
}
|
||||
|
||||
LONG WINAPI SCardListReadersW(SCARDCONTEXT context, LPCWSTR groups, LPWSTR readers, LPDWORD buflen)
|
||||
{
|
||||
FIXME("(%lx, %s, %p, %p) stub\n", context, debugstr_w(groups), readers, buflen);
|
||||
return SCARD_F_INTERNAL_ERROR;
|
||||
}
|
||||
|
|
|
@ -211,7 +211,7 @@ reactos/dll/win32/wininet # Synced to WineStaging-1.7.37
|
|||
reactos/dll/win32/winmm # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/midimap # Forked at Wine-20050628
|
||||
reactos/dll/win32/winmm/wavemap # Forked at Wine-20050628
|
||||
reactos/dll/win32/winscard # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/winscard # Synced to WineStaging-1.7.47
|
||||
reactos/dll/win32/wintrust # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/wldap32 # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/wmi # Synced to WineStaging-1.7.37
|
||||
|
|
Loading…
Reference in a new issue