SCardSetCardTypeProviderName function winscard

int SCardSetCardTypeProviderName(
  1. int hContext,
  2. Pointer<Utf16> szCardName,
  3. int dwProviderId,
  4. Pointer<Utf16> szProvider
)

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);