⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 extern.c

📁 minigui 1.6.10 8.1开源版
💻 C
字号:
/***  $Id: unknown.c 7346 2007-08-16 03:58:07Z xgwang $**  **  extern.c: A subdriver of CommonLCD NEWGAL engine for some targets**      which are defined by the external module.****  Copyright (C) 2003 ~ 2007 Feynman Software.*/#include <stdio.h>#include <stdlib.h>#include <string.h>#include "common.h"#ifdef _NEWGAL_ENGINE_COMMLCD#if defined (__VXWORKS__) || defined (__TARGET_UNKNOWN__)#include "minigui.h"#include "newgal.h"#include "sysvideo.h"#include "pixels_c.h"#include "commlcd.h"extern int __commlcd_drv_init (void);extern int __commlcd_drv_getinfo (struct commlcd_info *li);extern int __commlcd_drv_release (void);extern int __commlcd_drv_setclut (int firstcolor,             int ncolors, GAL_Color *colors);struct commlcd_ops __mg_commlcd_ops = {    __commlcd_drv_init,    __commlcd_drv_getinfo,    __commlcd_drv_release,    __commlcd_drv_setclut};#endif#endif /* _NEWGAL_ENGINE_COMMLCD */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -