C语言程序设计(第9章实用编程技巧)
9.1图形应用技巧
9.1.1显示器适配器类型的自动测试
目前PC和兼容电脑的显示器和适配器类型很多,有单色的,也有彩色的。这些监视器和适配器的模式对应用程序非常重要。如何自动识别程序中的显示模式,从而更好地利用当前的显示模式,是每个微机应用程序开发人员的重要课题。下面的程序可以很容易的测出当前的显示适配器模式(具体知识请参考其他相关技术书籍)。
[例9-1] 测试显示适配器类型。
#include
#include
#define P(note) printf(note)
#define PV(format,value) printf(format ,v a l u e )
#define PM printf("mode is ")
#define PD printf("\n\tdetected graphics drive is")
void main( )
{
int gdrive,gerror,gmode;
detectgraph(&gdrive,&gmode); /* 标准测试函数*/
if(gdrive
0条评论