logfile.h

来自「大名鼎鼎的远程登录软件putty的Symbian版源码」· C头文件 代码 · 共 27 行

H
27
字号
/*    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 + =
减小字号Ctrl + -
显示快捷键?