?? unknown.c
字號:
/*** $Id: unknown.c,v 1.8 2005/04/22 02:54:02 weiym Exp $** ** unknown.c: A subdriver of shadow NEWGAL engine for unknown target.**** Copyright (C) 2003 ~ 2005 Feynman Software.*//*** This program is free software; you can redistribute it and/or modify** it under the terms of the GNU General Public License as published by** the Free Software Foundation; either version 2 of the License, or** (at your option) any later version.**** This program is distributed in the hope that it will be useful,** but WITHOUT ANY WARRANTY; without even the implied warranty of** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the** GNU General Public License for more details.**** You should have received a copy of the GNU General Public License** along with this program; if not, write to the Free Software** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/#include <stdio.h>#include <stdlib.h>#include <string.h>#include "common.h"#ifdef _NEWGAL_ENGINE_SHADOW #ifdef __TARGET_UNKNOWN__#include "minigui.h"#include "newgal.h"#include "sysvideo.h"#include "pixels_c.h"#include "shadow.h"static int a_init (void){ return 0;}static int a_getinfo (struct lcd_info* lcd_info){ lcd_info->height = 240; lcd_info->width = 320; lcd_info->bpp = 1; lcd_info->fb = NULL; lcd_info->rlen = 0; lcd_info->type = 0; return 0;}static void a_sleep (void){}static void a_refresh (_THIS, const RECT* update){}struct shadow_lcd_ops __mg_shadow_lcd_ops = { a_init, a_getinfo, NULL, NULL, a_sleep, a_refresh};#endif /* __TARGET_UNKNOWN__ */#endif /* _NEWGAL_ENGINE_SHADOW */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -