mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[WINSCARD] Sync with Wine Staging 1.9.11. CORE-11368
svn path=/trunk/; revision=71733
This commit is contained in:
parent
2eca3a3c3e
commit
8822aee40f
2 changed files with 5 additions and 5 deletions
|
@ -124,14 +124,14 @@ void WINAPI SCardReleaseStartedEvent(void)
|
|||
FIXME("stub\n");
|
||||
}
|
||||
|
||||
LONG WINAPI SCardListReadersA(SCARDCONTEXT context, LPCSTR groups, LPSTR readers, LPDWORD buflen)
|
||||
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_F_INTERNAL_ERROR;
|
||||
return SCARD_E_NO_READERS_AVAILABLE;
|
||||
}
|
||||
|
||||
LONG WINAPI SCardListReadersW(SCARDCONTEXT context, LPCWSTR groups, LPWSTR readers, LPDWORD buflen)
|
||||
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_F_INTERNAL_ERROR;
|
||||
return SCARD_E_NO_READERS_AVAILABLE;
|
||||
}
|
||||
|
|
|
@ -209,7 +209,7 @@ reactos/dll/win32/wininet # Synced to WineStaging-1.9.4
|
|||
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.9.4
|
||||
reactos/dll/win32/winscard # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/wintrust # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/wldap32 # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/wmi # Synced to WineStaging-1.9.4
|
||||
|
|
Loading…
Reference in a new issue