📄 logfile.h
字号:
/* logfile.h
*
* File logging macros. Slow but should work in any situation.
*
* Copyright 2004 Petteri Kangaslampi
*
* See license.txt for full copyright and license information.
*/
#ifndef __LOGFILE_H__
#define __LOGFILE_H__
#ifdef LOGFILE_ENABLED
#include <e32std.h>
void LogFilePrint(TRefByValue<const TDesC> aFormat, ...);
#define LFPRINT(x) LogFilePrint x
#else
#define LFPRINT(x)
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -