📄 gameswf_log.h
字号:
// gameswf_log.h -- Thatcher Ulrich <tu@tulrich.com> 2003// This source code has been donated to the Public Domain. Do// whatever you want with it.// Helpers for logging messages & errors.#ifndef GAMESWF_LOG_H#define GAMESWF_LOG_Hnamespace gameswf{ // Printf-style interfaces.#ifdef __GNUC__ // use the following to catch errors: (only with gcc) void log_msg(const char* fmt, ...) __attribute__((format (printf, 1, 2))); void log_error(const char* fmt, ...) __attribute__((format (printf, 1, 2)));#else // not __GNUC__ void log_msg(const char* fmt, ...); void log_error(const char* fmt, ...);#endif // not __GNUC__}#endif // GAMESWF_LOG_H// Local Variables:// mode: C++// c-basic-offset: 8 // tab-width: 8// indent-tabs-mode: t// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -