12345678910111213141516171819202122232425 |
- /*
- * version.c
- *
- * Copyright 2001-2003, Meiosys (www.meiosys.com). All rights reserved.
- *
- * See the COPYING file for the terms of usage and distribution.
- */
- #include <tchar.h>
- #include "log4c/version.h"
- #include "log4c/config.h"
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- static const TCHAR version[] = _T("1.2.1");
- const int log4c_major_version = LOG4C_MAJOR_VERSION;
- const int log4c_minor_version = LOG4C_MINOR_VERSION;
- const int log4c_micro_version = LOG4C_MICRO_VERSION;
- /*******************************************************************************/
- extern const TCHAR* log4c_version(void)
- {
- return VERSION;
- }
|