typedef unsigned char boolean /* for use with TRUE/FALSE*/
#ifndef TRUE /* conditional check */
#define TRUE ((boolean) 1)
#endif
#ifndef FALSE/* conditional check */
#define FALSE ((boolean) 0)
#endif
1、记住,尽量不要在.c/.cpp文件中定义变量,而只能是声明变量。即将如下两句放在windowinit.cpp中。 /* variables */ int width = 640int height = 4802、在windowinit.h中声明这两个变量: /* variables */ extern int widthextern int欢迎分享,转载请注明来源:内存溢出
评论列表(0条)