summaryrefslogtreecommitdiff
path: root/accel-pptpd/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pptpd/log.h')
-rw-r--r--accel-pptpd/log.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/accel-pptpd/log.h b/accel-pptpd/log.h
new file mode 100644
index 00000000..25f9f976
--- /dev/null
+++ b/accel-pptpd/log.h
@@ -0,0 +1,25 @@
+//
+// C++ Interface: log
+//
+// Description:
+//
+//
+// Author: <xeb@mail.ru>, (C) 2009
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+#ifndef LOG_H
+#define LOG_H
+
+#include <stdio.h>
+
+void log_init(FILE *f,int level,int color);
+void log_error(const char *fmt,...);
+void log_warn(const char *fmt,...);
+void log_info(const char *fmt,...);
+void log_debug(const char *fmt,...);
+void log_msg(const char *fmt,...);
+
+#endif