winscard: Add SCardCancel stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45880 Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7bf2a1b209
commit
eb68dc9633
|
@ -141,3 +141,10 @@ LONG WINAPI SCardListReadersW(SCARDCONTEXT context, const WCHAR *groups, WCHAR *
|
|||
FIXME("(%lx, %s, %p, %p) stub\n", context, debugstr_w(groups), readers, buflen);
|
||||
return SCARD_E_NO_READERS_AVAILABLE;
|
||||
}
|
||||
|
||||
LONG WINAPI SCardCancel(SCARDCONTEXT context)
|
||||
{
|
||||
FIXME("(%lx) stub\n", context);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return SCARD_F_INTERNAL_ERROR;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
@ stdcall SCardAddReaderToGroupA(long str str)
|
||||
@ stdcall SCardAddReaderToGroupW(long wstr wstr)
|
||||
@ stub SCardBeginTransaction
|
||||
@ stub SCardCancel
|
||||
@ stdcall SCardCancel(long)
|
||||
@ stub SCardConnectA
|
||||
@ stub SCardConnectW
|
||||
@ stub SCardControl
|
||||
|
|
Loading…
Reference in New Issue