?? gameswf_log.h
字號(hào):
// 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:
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -