From: <lu...@us...> - 2010-05-07 13:00:20
|
Revision: 403 http://pyscard.svn.sourceforge.net/pyscard/?rev=403&view=rev Author: ludov Date: 2010-05-07 13:00:13 +0000 (Fri, 07 May 2010) Log Message: ----------- getPinProperties(): update to the PIN_PROPERTIES structure from PCSC v2 part 10 Revision 2.02.06, April 2009 Fields wLcdMaxCharacters and wLcdMaxLines have been removed Revision Links: -------------- http://pyscard.svn.sourceforge.net/pyscard/?rev=2&view=rev Modified Paths: -------------- trunk/pyscard/src/smartcard/pcsc/PCSCPart10.py Modified: trunk/pyscard/src/smartcard/pcsc/PCSCPart10.py =================================================================== --- trunk/pyscard/src/smartcard/pcsc/PCSCPart10.py 2010-05-07 12:57:39 UTC (rev 402) +++ trunk/pyscard/src/smartcard/pcsc/PCSCPart10.py 2010-05-07 13:00:13 UTC (rev 403) @@ -122,10 +122,8 @@ 'raw': response, 'LcdLayoutX': response[0], 'LcdLayoutY': response[1], - 'LcdMaxCharacters': response[2]<<8 + response[3], - 'LcdMaxLines': response[4]<<8 + response[5], - 'EntryValidationCondition': response[6], - 'TimeOut2': response[7] + 'EntryValidationCondition': response[2], + 'TimeOut2': response[3] } return d This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |