[Pcsclite-cvs-commit] PCSC/src readerfactory.h,1.14,1.15

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


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

Modified Files:
	readerfactory.h 
Log Message:
psCapabilites and psProtOptions fields are not used in struct
ReaderContext so "#if 0" them


Index: readerfactory.h
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/src/readerfactory.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- readerfactory.h	5 Jun 2004 15:43:11 -0000	1.14
+++ readerfactory.h	17 Jun 2004 06:29:07 -0000	1.15
@@ -93,9 +93,6 @@
 		char lpcDevice[MAX_DEVICENAME];	/* Device Name */
 		PCSCLITE_THREAD_T pthThread;	/* Event polling thread */
 		PCSCLITE_MUTEX_T mMutex;	/* Mutex for this connection */
-		RDR_CAPABILITIES psCapabilites;	/* Structure of reader
-						   capabilities */
-		PROT_OPTIONS psProtOptions;	/* Structure of protocol options */
 		RDR_CLIHANDLES psHandles[PCSCLITE_MAX_READER_CONTEXT_CHANNELS];	
                                          /* Structure of connected handles */
 		FCT_MAP psFunctions;	/* Structure of function pointers */
@@ -114,6 +111,13 @@
 		DWORD dwPublicID;		/* Public id of public state struct */
 		PDWORD pdwFeeds;		/* Number of shared client to lib */
 		PDWORD pdwMutex;		/* Number of client to mutex */
+
+		/* these structures are unused */
+#if 0
+		RDR_CAPABILITIES psCapabilites;	/* Structure of reader
+						   capabilities */
+		PROT_OPTIONS psProtOptions;	/* Structure of protocol options */
+#endif
 	};
 
 	typedef struct ReaderContext READER_CONTEXT, *PREADER_CONTEXT;