[Pcsclite-cvs-commit] Drivers/ccid/src/towitoko defines.h,1.2,1.3

rousseau@haydn.debian.org rousseau@haydn.debian.org


Update of /cvsroot/pcsclite/Drivers/ccid/src/towitoko
In directory haydn:/tmp/cvs-serv10352

Modified Files:
	defines.h 
Log Message:
remove MIN() and MAX() definitions


Index: defines.h
===================================================================
RCS file: /cvsroot/pcsclite/Drivers/ccid/src/towitoko/defines.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- defines.h	17 May 2004 14:35:51 -0000	1.2
+++ defines.h	30 Jun 2004 13:46:45 -0000	1.3
@@ -46,7 +46,7 @@
  * Type definitions
  */
 
-#include <pcsclite.h>
+#include <PCSC/wintypes.h>
 
 #ifndef __cplusplus
 typedef int                bool;
@@ -55,14 +55,6 @@
 /*
  * Utility macros
  */
-
-#ifndef MAX
-#define MAX(a,b)	((a)>(b)?(a):(b))
-#endif
-
-#ifndef MIN
-#define MIN(a,b)	((a)<(b)?(a):(b))
-#endif
 
 /* Invert order of bits in a byte: b7->b0, b0->b7 */
 #ifndef INVERT_BYTE