Commit 13b6a43d authored by Austin English's avatar Austin English Committed by Alexandre Julliard

winscard: Add a stub for SCardListCardsA.

parent e88e2239
......@@ -94,3 +94,10 @@ LONG WINAPI SCardEstablishContext(DWORD dwScope, LPCVOID pvReserved1,
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return SCARD_F_INTERNAL_ERROR;
}
LONG WINAPI SCardListCardsA(SCARDCONTEXT hContext, LPCBYTE pbAtr, LPCGUID rgguidInterfaces, DWORD cguidInterfaceCount, LPSTR mszCards, LPDWORD pcchCards)
{
FIXME(": stub\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return SCARD_F_INTERNAL_ERROR;
}
......@@ -34,7 +34,7 @@
@ stub SCardIntroduceReaderGroupW
@ stub SCardIntroduceReaderW
@ stub SCardIsValidContext
@ stub SCardListCardsA
@ stdcall SCardListCardsA(long ptr ptr long str long)
@ stub SCardListCardsW
@ stub SCardListInterfacesA
@ stub SCardListInterfacesW
......
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