fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
at master 44 lines 1.9 kB view raw
1/***************************************************************************** 2 * pce * 3 *****************************************************************************/ 4 5/***************************************************************************** 6 * File name: src/drivers/video/null.h * 7 * Created: 2003-10-18 by Hampa Hug <hampa@hampa.ch> * 8 * Copyright: (C) 2003-2011 Hampa Hug <hampa@hampa.ch> * 9 *****************************************************************************/ 10 11/***************************************************************************** 12 * This program is free software. You can redistribute it and / or modify it * 13 * under the terms of the GNU General Public License version 2 as published * 14 * by the Free Software Foundation. * 15 * * 16 * This program is distributed in the hope that it will be useful, but * 17 * WITHOUT ANY WARRANTY, without even the implied warranty of * 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * 19 * Public License for more details. * 20 *****************************************************************************/ 21 22 23#ifndef PCE_VIDEO_NULL_H 24#define PCE_VIDEO_NULL_H 1 25 26 27#include <stdio.h> 28 29#include <libini/libini.h> 30#include <drivers/video/terminal.h> 31 32 33typedef struct { 34 terminal_t trm; 35} null_t; 36 37 38/*!*************************************************************************** 39 * @short Create a new null terminal 40 *****************************************************************************/ 41terminal_t *null_new (ini_sct_t *ini); 42 43 44#endif