1 #include "pstring.h"
2 #include "tmpllog.h"
3 #include "pabstract.h"
4 
5 struct tmplpro_param;
6 
7 static int tmplpro_exec_tmpl_filename (struct tmplpro_param* ProParams,const char* filename);
8 static int tmplpro_exec_tmpl_scalarref (struct tmplpro_param* ProParams, PSTRING memarea);
9 
10 static const char* const errlist[] = {
11   "ok",
12   "invalid argument",
13   "file not found",
14   "can't open file",
15   "syntax error in template",
16   "not enough memory (allocation error)",
17   "",
18   "",
19   ""
20 };
21 
22 /*
23  * Local Variables:
24  * mode: c
25  * End:
26  */
27