日期:2014-05-16 浏览次数:21196 次
[DllImport("winscard.dll")]
public static extern int SCardTransmit(int hCard, ref SCARD_IO_REQUEST pioSendRequest, ref byte SendBuff, int SendBuffLen, ref SCARD_IO_REQUEST pioRecvRequest, byte[] RecvBuff, ref int RecvBuffLen);
retValue = SmartCard.SCardTransmit(ArrHandle[comboBox_ReaderList.SelectedIndex], ref pioSendRequest,
ref SendBuff[0], SendLen, ref pioRecRequest, Recvbuff, ref RecvLen);
public byte[] SendBuff = new byte[64];
public byte[] RecvBuff = new byte[64];