mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
winscard: Add extended stub for SCardEstablishContext.
This commit is contained in:
parent
b9a6825927
commit
832c43f9a7
@ -50,3 +50,11 @@ BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
LONG WINAPI SCardEstablishContext(DWORD dwScope, LPCVOID pvReserved1,
|
||||
LPCVOID pvReserved2, LPSCARDCONTEXT phContext)
|
||||
{
|
||||
FIXME("(%x,%p,%p,%p) stub\n", dwScope, pvReserved1, pvReserved2, phContext);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return SCARD_F_INTERNAL_ERROR;
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
@ stub SCardControl
|
||||
@ stub SCardDisconnect
|
||||
@ stub SCardEndTransaction
|
||||
@ stub SCardEstablishContext
|
||||
@ stdcall SCardEstablishContext(long ptr ptr ptr)
|
||||
@ stub SCardForgetCardTypeA
|
||||
@ stub SCardForgetCardTypeW
|
||||
@ stub SCardForgetReaderA
|
||||
|
Loading…
Reference in New Issue
Block a user