1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,25 @@ |
1 |
+/* |
|
2 |
+ * newslettersan.h |
|
3 |
+ * |
|
4 |
+ * Small newsletter web server |
|
5 |
+ * |
|
6 |
+ * Header file |
|
7 |
+ * |
|
8 |
+ * Author: Dario Rodriguez dario@softhome.net |
|
9 |
+ * This program is licensed under the terms of the Affero GPL v1+ |
|
10 |
+ */ |
|
11 |
+ |
|
12 |
+#ifndef NEWSLETTERSAN_H |
|
13 |
+#define NEWSLETTERSAN_H |
|
14 |
+ |
|
15 |
+#include "socklib.h" |
|
16 |
+#include "webkernel.h" |
|
17 |
+#include "newsl_config.h" |
|
18 |
+ |
|
19 |
+typedef struct newslettersan { |
|
20 |
+ sselect *ssel; |
|
21 |
+ wk *web; |
|
22 |
+ newslconfig *config; |
|
23 |
+} newslettersan; |
|
24 |
+ |
|
25 |
+#endif |