[Pcsclite-cvs-commit] r6926 - trunk/Drivers/ccid/src
ludovic.rousseau at free.fr
ludovic.rousseau at free.fr
Tue Jun 17 09:22:00 UTC 2014
Author: rousseau
Date: 2014-06-17 09:22:00 +0000 (Tue, 17 Jun 2014)
New Revision: 6926
Modified:
trunk/Drivers/ccid/src/defs.h
Log:
Use "unsigned char" instead of "UCHAR"
UCHAR is not a standard C type and is not available on UEFI.
Modified: trunk/Drivers/ccid/src/defs.h
===================================================================
--- trunk/Drivers/ccid/src/defs.h 2014-06-17 09:19:25 UTC (rev 6925)
+++ trunk/Drivers/ccid/src/defs.h 2014-06-17 09:22:00 UTC (rev 6926)
@@ -31,12 +31,12 @@
* ATR
*/
int nATRLength;
- UCHAR pcATRBuffer[MAX_ATR_SIZE];
+ unsigned char pcATRBuffer[MAX_ATR_SIZE];
/*
* Card state
*/
- UCHAR bPowerFlags;
+ unsigned char bPowerFlags;
/*
* T=1 Protocol context
More information about the Pcsclite-cvs-commit
mailing list