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
|
/*
* libextl/readconfig.h
*
* Copyright (c) Tuomo Valkonen 1999-2005.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*/
#ifndef LIBEXTL_READCONFIG_H
#define LIBEXTL_READCONFIG_H
#include "extl.h"
typedef int ExtlTryConfigFn(const char *file, void *param);
enum{
EXTL_TRYCONFIG_MEMERROR=-3,
EXTL_TRYCONFIG_NOTFOUND=-2,
EXTL_TRYCONFIG_LOAD_FAILED=-1,
EXTL_TRYCONFIG_CALL_FAILED=0,
EXTL_TRYCONFIG_OK=1
};
extern bool extl_set_userdirs(const char *appname);
extern bool extl_set_sessiondir(const char *session);
extern bool extl_set_searchpath(const char *path);
extern bool extl_add_searchdir(const char *dir);
extern const char *extl_userdir();
extern const char *extl_sessiondir();
extern const char *extl_searchpath();
extern int extl_try_config(const char *fname, const char *cfdir,
ExtlTryConfigFn *tryfn, void *tryfnparam,
const char *ext1, const char *ext2);
extern char *extl_lookup_script(const char *file, const char *sp);
extern bool extl_read_config(const char *file, const char *sp,
bool warn_nx);
extern char *extl_get_savefile(const char *module);
extern bool extl_read_savefile(const char *module, ExtlTab *tabret);
extern ExtlTab extl_extl_read_savefile(const char *module);
extern bool extl_write_savefile(const char *module, ExtlTab tab);
#endif /* LIBEXTL_READCONFIG_H */
|