| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2793 人关注过本帖
标题:vc6.0怎么使用detectgraph()函数
取消只看楼主 加入收藏
ant1234
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2013-7-7
结帖率:75%
收藏
已结贴  问题点数:18 回复次数:1 
vc6.0怎么使用detectgraph()函数
#include "stdafx.h"
#include "stdio.h"
#include "graphics.h"
#include "stdlib.h"
#include "conio.h"


int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
     int gdriver, gmode;
detectgraph(&gdriver, &gmode);  /*自动测试硬件*/
printf("the graphics driver is %d, mode is %d\n",
gdriver,gmode); /*输出测试结果*/
getch();
initgraph(&gdriver, &gmode, "");
/* 根据测试结果初始化图形*/
bar3d(10, 10, 130, 250, 20, 1);
getch();
closegraph();

// TODO: Place code here.

    return 0;
}
--------------------Configuration: 1111 - Win32 Debug--------------------
Compiling...
1111.cpp
C:\Program Files\Microsoft Visual Studio\MyProjects\1111\1111.cpp(17) : error C2065: 'detectgraph' : undeclared identifier
执行 cl.exe 时出错.

1111.exe - 1 error(s), 0 warning(s)
为什么未定义啊,怎么办
搜索更多相关主题的帖子: include 测试结果 硬件 
2013-07-13 10:42
ant1234
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2013-7-7
收藏
得分:0 
弄的我不敢问问题了。不过还是谢谢版版这么详细的回答。
2013-07-13 13:33
快速回复:vc6.0怎么使用detectgraph()函数
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015918 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved