2019-07-28 10:31:56 +08:00
|
|
|
|
// stdafx.h : <20><>ϵͳ<CFB5><CDB3><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC>İ<EFBFBD><C4B0><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>
|
|
|
|
|
// <20><><EFBFBD>dz<EFBFBD><C7B3>õ<EFBFBD><C3B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD>Ŀ<EFBFBD>ض<EFBFBD><D8B6>İ<EFBFBD><C4B0><EFBFBD><EFBFBD>ļ<EFBFBD>
|
2016-02-05 10:10:24 +08:00
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#include <iostream>
|
|
|
|
|
//#include <tchar.h>
|
|
|
|
|
|
2019-07-28 10:31:56 +08:00
|
|
|
|
// TODO: <20>ڴ˴<DAB4><CBB4><EFBFBD><EFBFBD>ó<EFBFBD><C3B3><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>ĸ<EFBFBD><C4B8><EFBFBD>ͷ<EFBFBD>ļ<EFBFBD>
|
2016-02-05 10:10:24 +08:00
|
|
|
|
|
|
|
|
|
#include "lib_acl.h"
|
2019-07-08 22:08:26 +08:00
|
|
|
|
#include "acl_cpp/lib_acl.hpp"
|
2016-02-05 10:10:24 +08:00
|
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
#define snprintf _snprintf
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-07-08 22:08:26 +08:00
|
|
|
|
typedef acl::HttpServletRequest request_t;
|
|
|
|
|
typedef acl::HttpServletResponse response_t;
|
|
|
|
|
|
|
|
|
|
#undef logger
|
|
|
|
|
#undef logger_warn
|
|
|
|
|
#undef logger_error
|
|
|
|
|
#undef logger_fatal
|
|
|
|
|
#undef logger_debug
|
|
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
|
|
|
|
|
|
# if _MSC_VER >= 1500
|
|
|
|
|
# define logger(fmt, ...) \
|
|
|
|
|
acl::log::msg4(__FILE__, __LINE__, __FUNCTION__, fmt, __VA_ARGS__)
|
|
|
|
|
# define logger_warn(fmt, ...) \
|
|
|
|
|
acl::log::warn4(__FILE__, __LINE__, __FUNCTION__, fmt, __VA_ARGS__)
|
|
|
|
|
# define logger_error(fmt, ...) \
|
|
|
|
|
acl::log::error4(__FILE__, __LINE__, __FUNCTION__, fmt, __VA_ARGS__)
|
|
|
|
|
# define logger_fatal(fmt, ...) \
|
|
|
|
|
acl::log::fatal4(__FILE__, __LINE__, __FUNCTION__, fmt, __VA_ARGS__)
|
|
|
|
|
# define logger_debug(section, level, fmt, ...) \
|
|
|
|
|
acl::log::msg6(section, level, __FILE__, __LINE__, __FUNCTION__, fmt, __VA_ARGS__)
|
|
|
|
|
# else
|
|
|
|
|
# define logger acl::log::msg1
|
|
|
|
|
# define logger_warn acl::log::warn1
|
|
|
|
|
# define logger_error acl::log::error1
|
|
|
|
|
# define logger_fatal acl::log::fatal1
|
|
|
|
|
# define logger_debug acl::log::msg3
|
|
|
|
|
# endif
|
|
|
|
|
#else
|
|
|
|
|
# define logger(fmt, args...) \
|
|
|
|
|
acl::log::msg4(__FILE__, __LINE__, __FUNCTION__, fmt, ##args)
|
|
|
|
|
# define logger_warn(fmt, args...) \
|
|
|
|
|
acl::log::warn4(__FILE__, __LINE__, __FUNCTION__, fmt, ##args)
|
|
|
|
|
# define logger_error(fmt, args...) \
|
|
|
|
|
acl::log::error4(__FILE__, __LINE__, __FUNCTION__, fmt, ##args)
|
|
|
|
|
# define logger_fatal(fmt, args...) \
|
|
|
|
|
acl::log::fatal4(__FILE__, __LINE__, __FUNCTION__, fmt, ##args)
|
|
|
|
|
# define logger_debug(section, level, fmt, args...) \
|
|
|
|
|
acl::log::msg6(section, level, __FILE__, __LINE__, __FUNCTION__, fmt, ##args)
|
|
|
|
|
#endif // !_WIN32 && !_WIN64
|
2020-05-04 20:30:58 +08:00
|
|
|
|
|
|
|
|
|
extern char *var_cfg_var_path;
|
|
|
|
|
extern char *var_cfg_page_html;
|