common.cpp

来自「简单的输入法 各位多多指教 简单的输入法 各位多多指教」· C++ 代码 · 共 23 行

CPP
23
字号
//=============================================================================
//******Common.cpp***************
//For common operation.
//============================================================================

#include "stdafx.h"
#include "common.h"

//------------------------------------------------------------------------------
//Description:
//	Write string to the log.txt file
//
VOID WriteLog(CHAR* str)
{
    FILE* fp = fopen("\\log.txt", "a+");
    if (fp != NULL) {
		fwrite(str, strlen(str), 1, fp);
		fwrite("\n", strlen("\n"), 1, fp);
        fclose(fp);
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?