SCardSetCardTypeProviderName function winscard

int SCardSetCardTypeProviderName(
  1. int hContext,
  2. PCWSTR szCardName,
  3. int dwProviderId,
  4. PCWSTR szProvider,
)

Specifies the name of the module (dynamic link library) containing the provider for a given card name and provider type.

To learn more, see learn.microsoft.com/windows/win32/api/winscard/nf-winscard-scardsetcardtypeprovidernamew.

Implementation

@pragma('vm:prefer-inline')
int SCardSetCardTypeProviderName(
  int hContext,
  PCWSTR szCardName,
  int dwProviderId,
  PCWSTR szProvider,
) => _SCardSetCardTypeProviderName(
  hContext,
  szCardName,
  dwProviderId,
  szProvider,
);