From baf21dd0ff6f46cd6a6fec786d1c3a59ed8dbd28 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Fri, 18 Oct 2002 09:22:41 +0000 Subject: [PATCH] Cleaned out for now Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@346 --- include/hardware.h | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/include/hardware.h b/include/hardware.h index 5edfa4b7..514e13ac 100644 --- a/include/hardware.h +++ b/include/hardware.h @@ -19,24 +19,7 @@ #ifndef _HARDWARE_H_ #define _HARDWARE_H_ -#include -#include -#include -typedef void (* HW_OutputHandler)(char * towrite); -typedef void (* HW_InputHandler)(char * line); - -struct HWBlock { - char * dev_name; /* 8 characters max dev name */ - char * full_name; /* 60 characters full name */ - char * help; - HW_InputHandler get_input; - HW_OutputHandler show_status; /* Supplied with a string to display 50 chars of status info in */ - HWBlock * next; -}; - - -void HW_Register(HWBlock * block); #endif