summaryrefslogtreecommitdiffstats
path: root/libcsoap/csoaplog.h
diff options
context:
space:
mode:
authorGravatar snowdrop2004-02-03 08:07:35 +0000
committerGravatar snowdrop2004-02-03 08:07:35 +0000
commit65949d1c0eebfb52a1c860a2fc5acb2df7e8c299 (patch)
treeea5395d48dc9c90dbbe1195fa341ff287a51f2e1 /libcsoap/csoaplog.h
parent977f0fdf9834f391a62f74a67960e8e301c914bb (diff)
downloadcsoap-65949d1c0eebfb52a1c860a2fc5acb2df7e8c299.tar.gz
csoap-65949d1c0eebfb52a1c860a2fc5acb2df7e8c299.tar.bz2
develop
Diffstat (limited to 'libcsoap/csoaplog.h')
-rw-r--r--libcsoap/csoaplog.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/libcsoap/csoaplog.h b/libcsoap/csoaplog.h
deleted file mode 100644
index 6d7edb6..0000000
--- a/libcsoap/csoaplog.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef CSOAP_LOG_H
-#define CSOAP_LOG_H
-
-
-typedef enum tagSoapLogLevel
-{
- LOG_TRACE,
- LOG_DEBUG,
- LOG_INFO,
- LOG_WARN,
- LOG_ERROR
-}SoapLogLevel;
-
-void SoapTraceEnter(const char* function,
- const char* format, ...);
-
-void SoapTraceLeave(const char* function,
- const char* format, ...);
-void SoapTraceLeaveWithError(const char* function,
- const char* format, ...);
-
-void SoapLog(SoapLogLevel level, const char* function,
- const char* format, ...);
-
-#endif
-