[Pcsclite-cvs-commit] PCSC/src debuglog.h,1.7,1.8

sauveron-guest@quantz.debian.org sauveron-guest@quantz.debian.org
Wed, 10 Sep 2003 11:24:59 +0200


Update of /cvsroot/pcsclite/PCSC/src
In directory quantz:/tmp/cvs-serv7886/src

Modified Files:
	debuglog.h 
Log Message:
Add a comment about the usage of DebugLogC

Index: debuglog.h
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/src/debuglog.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- debuglog.h	2 Sep 2003 16:07:27 -0000	1.7
+++ debuglog.h	10 Sep 2003 09:24:56 -0000	1.8
@@ -20,11 +20,15 @@
  * DebugLogA("text");
  *  log "text"
  *
- * DebugLogB("text: %d", 1234)
+ * DebugLogB("text: %d", 1234);
  *  log "text: 1234"
  * the format string can be anything printf() can understand
  *
- * DebugXxd(msg, buffer, size)
+ * DebugLogC("text: %d %d", 1234, 5678);
+ *  log "text: 1234 5678"
+ * the format string can be anything printf() can understand
+ *
+ * DebugXxd(msg, buffer, size);
  *  log "msg" + a hex dump of size bytes of buffer[]
  *
  */