stdafx.cpp

来自「是编译器我花了好几个礼拜才编好的确实难的这是个不错的编译器」· C++ 代码 · 共 23 行

CPP
23
字号
// stdafx.cpp : source file that includes just the standard includes
//	哈夫曼编码译码器.pch will be the pre-compiled header
//	stdafx.obj will contain the pre-compiled type information

#include "stdafx.h"




/********************************************************
使用说明:
1)void reportError(char info[],int length)函数用于报告错误
在不同平台下请自己编写
*********************************************************/




void reportError(char info[],int length)	//错误提示函数
{
	AfxMessageBox(info,length);
}

⌨️ 快捷键说明

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