SCardSetCardTypeProviderName function winscard
The SCardSetCardTypeProviderName function specifies the name of the module (dynamic link library) containing the provider for a given card name and provider type.
LONG SCardSetCardTypeProviderNameW(
SCARDCONTEXT hContext,
LPCWSTR szCardName,
DWORD dwProviderId,
LPCWSTR szProvider
);
Implementation
int SCardSetCardTypeProviderName(int hContext, Pointer<Utf16> szCardName,
int dwProviderId, Pointer<Utf16> szProvider) =>
_SCardSetCardTypeProviderName(
hContext, szCardName, dwProviderId, szProvider);