SCardGetCardTypeProviderName function winscard

int SCardGetCardTypeProviderName(
  1. int hContext,
  2. Pointer<Utf16> szCardName,
  3. int dwProviderId,
  4. Pointer<Utf16> szProvider,
  5. Pointer<Uint32> pcchProvider
)

The SCardGetCardTypeProviderName function returns the name of the module (dynamic link library) that contains the provider for a given card name and provider type.

LONG SCardGetCardTypeProviderNameW(
 SCARDCONTEXT hContext,
 LPCWSTR      szCardName,
 DWORD        dwProviderId,
 WCHAR        *szProvider,
 LPDWORD      pcchProvider
);

Implementation

int SCardGetCardTypeProviderName(
        int hContext,
        Pointer<Utf16> szCardName,
        int dwProviderId,
        Pointer<Utf16> szProvider,
        Pointer<Uint32> pcchProvider) =>
    _SCardGetCardTypeProviderName(
        hContext, szCardName, dwProviderId, szProvider, pcchProvider);