summaryrefslogtreecommitdiffstats
path: root/template.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2004-11-17 14:32:37 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2004-11-17 14:32:37 +0000
commitad0011c81447641474216f306ae1b4709c22ea6c (patch)
tree573330802dd5c0eacf8e1abc6b96f0c4dc9b5094 /template.h
parent33579ae6eccde4593c17909ef7b065ec8f32e563 (diff)
downloadrsyslog-ad0011c81447641474216f306ae1b4709c22ea6c.tar.gz
rsyslog-ad0011c81447641474216f306ae1b4709c22ea6c.tar.xz
rsyslog-ad0011c81447641474216f306ae1b4709c22ea6c.zip
begin templates
Diffstat (limited to 'template.h')
-rw-r--r--template.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/template.h b/template.h
new file mode 100644
index 00000000..8f96c43b
--- /dev/null
+++ b/template.h
@@ -0,0 +1,15 @@
+/* This is the header for template processing code of rsyslog.
+ * Please see syslogd.c for license information.
+ * This code is placed under the GPL.
+ * begun 2004-11-17 rgerhards
+ */
+struct template {
+ char *pszName;
+ char *pszTemplate;
+};
+
+struct template* tplConstruct(void);
+
+/*
+ * vi:set ai:
+ */