Commit eb68dc96 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

winscard: Add SCardCancel stub.

parent 7bf2a1b2
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment