35 lines
537 B
C
35 lines
537 B
C
/* $Id: init.h,v 1.4 2005/12/13 22:12:49 legoater Exp $
|
|
*
|
|
* Copyright 2001-2003, Meiosys (www.meiosys.com). All rights reserved.
|
|
*
|
|
* See the COPYING file for the terms of usage and distribution.
|
|
*/
|
|
|
|
#ifndef __log4c_init_h
|
|
#define __log4c_init_h
|
|
|
|
#include <log4c/defs.h>
|
|
|
|
/**
|
|
* @file init.h
|
|
*
|
|
* @brief log4c constructors and destructors
|
|
*
|
|
**/
|
|
|
|
/**
|
|
* constructor
|
|
*
|
|
* @returns 0 for success
|
|
**/
|
|
LOG4C_API int log4c_init(void);
|
|
|
|
/**
|
|
* destructor
|
|
*
|
|
* @returns 0 for success
|
|
**/
|
|
LOG4C_API int log4c_fini(void);
|
|
|
|
#endif
|