[Pcsclite-cvs-commit] r1826 - trunk/PCSC/src/PCSC

Ludovic Rousseau rousseau at costa.debian.org
Tue Jan 24 14:45:15 UTC 2006


Author: rousseau
Date: 2006-01-24 14:45:15 +0000 (Tue, 24 Jan 2006)
New Revision: 1826

Modified:
   trunk/PCSC/src/PCSC/debuglog.h
Log:
declare log_msg(), log_xxd(), DebugLogSetLevel() and
pcsc_stringify_error() as exported symbols since they are used by
libmusclecard or some applications


Modified: trunk/PCSC/src/PCSC/debuglog.h
===================================================================
--- trunk/PCSC/src/PCSC/debuglog.h	2006-01-24 14:44:22 UTC (rev 1825)
+++ trunk/PCSC/src/PCSC/debuglog.h	2006-01-24 14:45:15 UTC (rev 1826)
@@ -77,17 +77,17 @@
 #define DebugLogB(a, b) Log2(PCSC_LOG_INFO, a, b)
 #define DebugLogC(a, b,c) Log3(PCSC_LOG_INFO, a, b, c)
 
-void log_msg(const int priority, const char *fmt, ...);
-void log_xxd(const int priority, const char *msg, const unsigned char *buffer,
-	const int size);
+PCSC_API void log_msg(const int priority, const char *fmt, ...);
+PCSC_API void log_xxd(const int priority, const char *msg,
+	const unsigned char *buffer, const int size);
 
 void DebugLogSuppress(const int);
 void DebugLogSetLogType(const int);
 int DebugLogSetCategory(const int);
 void DebugLogCategory(const int, const unsigned char *, const int);
-void DebugLogSetLevel(const int level);
+PCSC_API void DebugLogSetLevel(const int level);
 
-char *pcsc_stringify_error(long);
+PCSC_API char *pcsc_stringify_error(long);
 
 #ifdef __cplusplus
 }




More information about the Pcsclite-cvs-commit mailing list