📄 common.cpp
字号:
//=============================================================================
//******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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -