[Pcsclite-cvs-commit] CVS PCSC/src/PCSC

CVS User rousseau ludovic.rousseau@free.fr
Wed Jul 6 07:20:23 UTC 2005


Update of /cvsroot/pcsclite/PCSC/src/PCSC
In directory haydn:/tmp/cvs-serv20979

Modified Files:
	reader.h 
Log Message:
use ISO C99 integer types in PCSC_TLV_STRUCTURE instead of __int*


--- /cvsroot/pcsclite/PCSC/src/PCSC/reader.h	2005/07/04 13:59:32	1.2
+++ /cvsroot/pcsclite/PCSC/src/PCSC/reader.h	2005/07/06 07:20:23	1.3
@@ -5,7 +5,7 @@
  *  David Corcoran <corcoran@linuxnet.com>
  *  Ludovic Rousseau <ludovic.rousseau@free.fr>
  *
- * $Id: reader.h,v 1.2 2005/07/04 13:59:32 rousseau Exp $
+ * $Id: reader.h,v 1.3 2005/07/06 07:20:23 rousseau Exp $
  */
 
 /**
@@ -115,12 +115,14 @@
 /* structures used (but not defined) in PCSC Part 10 revision 2.01.02:
  * "IFDs with Secure Pin Entry Capabilities" */
 
+#include <stdint.h>
 /* the structure must be 6-bytes long */
 typedef struct
 {
-	__int8_t tag __attribute__ ((__packed__));
-	__int8_t length __attribute__ ((__packed__));
-	__int32_t value __attribute__ ((__packed__));
+	int8_t tag __attribute__ ((__packed__));
+	int8_t length __attribute__ ((__packed__));
+	int32_t value __attribute__ ((__packed__));
 } PCSC_TLV_STRUCTURE;
 
 #endif
+





More information about the Pcsclite-cvs-commit mailing list