1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/* FILE: template.h --
* AUTHOR: W. Michael Petullo <new@flyn.org>
* DATE: 16 January 2000
*
* Copyright (c) 1999 W. Michael Petullo <new@flyn.org>
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef TEMPLATE_H
#define TEMPLATE_H
#ifdef __cplusplus
extern "C" {
#endif
#include <list.h>
/* ============================= template_init () =========================== *//* Initializes the template library. */
void template_init(void);
/* ============================= template_set_global_dir () ================= */
/* Set the global template directory -- takes a full path. */
int template_set_global_dir(const char *path);
/* ============================= template_set_local_dir () ================== */
/* Set the local template directory -- takes a directory to concatenate onto
* the user's home directory.
*/
int template_set_local_dir(const char *dir);
/* ============================ template_set_type () ======================= */
/* Set the file's type. Returns 1 if the type can be determined. */
int template_set_type(char *type, const char *filename);
/* ============================ template_find () ============================ */
int template_find(char *template_path, const char *filename, const char *type,
const char *template_name, const int use_global);
/* ============================= template_list () =========================== */
/* Prints the templates associated with the given type of file. Returns 0 in
* the case of an error.
*/
int template_list(const char *type);
/* ============================ template_write_it_using_map () ============== */
int template_write_it_using_map (const char *filepath, const int force, const char *template_path, list_t *map);
/* ============================= template_perror () ========================= */
/* Prints the last non-parse error. */
void template_perror(const char *msg);
/* ============================= template_strerror () ======================= */
/* Returns the last non-parse error. */
char *template_strerror(void);
/* ============================= template_destroy () ======================== */
/* Releases the resources associated with the template library. */
void template_destroy(void);
#ifdef __cplusplus
}
#endif
#endif /* TEMPLATE_H */
|