winscard: Add a stub for SCardListCardsA.
This commit is contained in:
parent
e88e2239aa
commit
13b6a43d73
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue