功 能: 通過檢測硬體確定圖形驅動程式和模式
用 法: void far detectgraph(int far *graphdriver, int far *graphmode);
程式例:
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
/* names of the various cards supported */
char *dname[] = { "requests detection",
"a CGA",
"an MCGA",
"an EGA",
"a 64K EGA",
"a monochrome EGA",
"an IBM 8514",
"a Hercules monochrome",
"an AT&T 6300 PC",
"a VGA",
"an IBM 3270 PC"
};
int main(void)
{
/* returns detected hardware info. */
int gdriver, gmode, errorcode;
/* detect graphics hardware available */
detectgraph(&gdriver, &gmode);
/* read result of detectgraph call */
errorcode = graphresult();
if (errorcode != grOk) /* an error
occurred */
{
printf("Graphics error: %s\n", \
grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* terminate with an error
code */
}
/* display the information detected */
clrscr();
printf("You have %s video display \
card.\n", dname[gdriver]);
printf("Press any key to halt:");
getch();
return 0;
}
相關詞條
-
detectgraph
detectgraph,是通過檢測硬體確定圖形驅動程式和模式。
-
detectgrap
解釋函式名: detectgraph功 能: 通過檢測硬體確定圖形驅動程式和模式用 法: void far detectgraph(int... available */ detectgraph(&...
解釋 程式例 -
圖形程式設計庫
的有關圖形函式detectgraph( ) ; 顯示卡檢測函式...
簡介 有關術語 圖形庫 Turbo C 的有關圖形函式 -
C語言庫函式
定義一般是指編譯器提供的可在c源程式中調用的函式。可分為兩類,一類是c語言標準規定的庫函式,一類是編譯器特定的庫函式。由於著作權原...
定義 內容介紹 相關概念 常用的庫函式 -
MK_FP
; detectgraph(&gd, &gm); if (gd...
-
C語言項目案例分析
內容簡介本書介紹了16個C語言實現的遊戲及小模組和8個套用項目,遊戲及小模組包括萬年曆、文秘、電話本、小熊時鐘、打字遊戲、彈力球...
內容簡介 目錄 前言 -
installuserdriver
, mode, sugmode = 0;detectgraph...
函式名 功能 簡介