12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef __log4c_rc_h
- #define __log4c_rc_h
- #include <log4c/defs.h>
- __LOG4C_BEGIN_DECLS
- typedef struct
- {
- struct
- {
- int nocleanup;
- int bufsize;
- int debug;
- int reread;
- } config;
- } log4c_rc_t;
- LOG4C_API log4c_rc_t * const log4c_rc;
- LOG4C_API int log4c_load(const char* a_filename);
- LOG4C_API int log4c_rc_load(log4c_rc_t* a_rc, const char* a_filename);
- LOG4C_API void log4c_reread(void);
- __LOG4C_END_DECLS
- #endif
|