getdefaultpalette

getdefaultpalette是一則函式,用 法: struct palettetype *far getdefaultpalette(void);

基本介紹

  • 中文名:getdefaultpalette
  • 功 能:返回調色板定義結構
  • 用 法:struct palettetype *far g
  • 程式例:#include
基本信息,程式例,

基本信息

函式名: getdefaultpalette
功 能: 返回調色板定義結構
用 法: struct palettetype *far getdefaultpalette(void);

程式例

:
#include
#include
#include
#include
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int i;
/* structure for returning palette copy */
struct palettetype far *pal=(void *) 0;
/* initialize graphics and local variables */
initgraph(&gdriver, &gmode, "");
/* read result of initialization */
errorcode = graphresult();
/* an error occurred */
if (errorcode != grOk)
{
printf("Graphics error: %s\n",
grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
/* terminate with an error code */
exit(1);
}
setcolor(getmaxcolor());
/* return a pointer to the default palette */
pal = getdefaultpalette();
for (i=0; i<16; i++)
{
printf("colors[%d] = %d\n", i,
pal->colors);
getch();
}
/* clean up */
getch();
closegraph();
return 0;
}

相關詞條

熱門詞條

聯絡我們