⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 information.h

📁 里面包含了许多实用的游戏开发包
💻 H
字号:
/************************[ Information 模块 ]************************\
\************************[       Start      ]************************/

//	版权(Copyright):
//		Copyright by Verdure programming group.  All Rights Reserved.
//     	新绿软件制作群. 版权所有。
//	模块名(MODULE):
//		Information.cpp
//	用途(PURPOSE):
//		一些显示、保存信息的函数
//	平台(PLATFORMS):
//     	运行平台:Windows95 + DirectX 5.0
//		编译平台:Visual C++ 6.0
//	函数(FUNCTIONS):
//		void infViewText(char *Title, char *ModuleName, char *format, ...)		文字信息显示
//		void infWriteText(char *Title, char *ModuleName, char *format, ...)		将文字信息保存到文件中
//	最后更改日期(Update):
//		1999.05.04 12:00:00
//	说明(COMMENTS):
//		

/*----------------------------------------------------------------*\
 函  数:
 		void infViewText(char *Title, char *ModuleName, char *format, ...)
 功  能:
 		文字信息显示
 参  数:
 		Title		- 标题
 		ModuleName  - 模块名
 		format 		- 字符格式
 返回值:
\*----------------------------------------------------------------*/
DllExport void infViewText(char *Title, char *srcfilename, int srcline, char *format, ...);


/*----------------------------------------------------------------*\
 函  数:
 		void infWriteText(char *Title, char *ModuleName, char *format, ...)
 功  能:
 		将文字信息保存到文件中
 参  数:
 		Title		- 标题
 		ModuleName  - 模块名
 		format 		- 字符格式
 返回值:
 说明:
 		首次使用前先调用InitializeInformation()函数
\*----------------------------------------------------------------*/
DllExport void infWriteText(char *Title,  char *srcfilename, int srcline, char *format, ...);
                                 


/*----------------------------------------------------------------*\
 函  数:
 		BOOL InitializeInformation(void)
 功  能:
		打开文件DebugFile
 参  数:
 返回值:
\*----------------------------------------------------------------*/
BOOL InitializeInformation(void);


/************************[       End        ]************************\
\************************[ Information 模块 ]************************/

⌨️ 快捷键说明

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