SCardSetAttrib function winscard

int SCardSetAttrib(
  1. int hCard,
  2. int dwAttrId,
  3. Pointer<Uint8> pbAttr,
  4. int cbAttrLen,
)

Sets the given reader attribute for the given handle.

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

Implementation

@pragma('vm:prefer-inline')
int SCardSetAttrib(
  int hCard,
  int dwAttrId,
  Pointer<Uint8> pbAttr,
  int cbAttrLen,
) => _SCardSetAttrib(hCard, dwAttrId, pbAttr, cbAttrLen);