-
int SCardTransmit(
int hCard,
Pointer<SCARD_IO_REQUEST> pioSendPci,
Pointer<Uint8> pbSendBuffer,
int cbSendLength,
Pointer<SCARD_IO_REQUEST> pioRecvPci,
Pointer<Uint8> pbRecvBuffer,
Pointer<Uint32> pcbRecvLength) I've been trying to implement WinScard recently, but I'm stuck on Also, I would like to know how to get IDm. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
There's an example of using it from C code here: https://stackoverflow.com/questions/24560471/scardtransmit-how-to-read-and-write-smartcard As a general rule, this package is a direct mapping of the Win32 headers to Dart, so C-based examples should be relatively easy to transfer. Given the tens of thousands of APIs in Win32, it's obviously beyond the scope of the package to document them all with worked examples, but I'd very warmly appreciate contributions to the |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
There's an example of using it from C code here: https://stackoverflow.com/questions/24560471/scardtransmit-how-to-read-and-write-smartcard
As a general rule, this package is a direct mapping of the Win32 headers to Dart, so C-based examples should be relatively easy to transfer. Given the tens of thousands of APIs in Win32, it's obviously beyond the scope of the package to document them all with worked examples, but I'd very warmly appreciate contributions to the
example/
directory.