new include system
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2137
This commit is contained in:
parent
989727eaae
commit
9aa295d8aa
14 changed files with 43 additions and 44 deletions
|
@ -16,10 +16,12 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __FPU_H
|
||||
#define __FPU_H
|
||||
#ifndef DOSBOX_FPU_H
|
||||
#define DOSBOX_FPU_H
|
||||
|
||||
#ifndef DOSBOX_MEM_H
|
||||
#include "mem.h"
|
||||
#endif
|
||||
|
||||
void FPU_ESC0_Normal(Bitu rm);
|
||||
void FPU_ESC0_EA(Bitu func,PhysPt ea);
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _HARDWARE_H_
|
||||
#define _HARDWARE_H_
|
||||
#ifndef DOSBOX_HARDWARE_H
|
||||
#define DOSBOX_HARDWARE_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
@ -33,5 +33,3 @@ FILE * OpenCaptureFile(const char * type,const char * ext);
|
|||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _IPX_H_
|
||||
#define _IPX_H_
|
||||
#ifndef DOSBOX_IPX_H
|
||||
#define DOSBOX_IPX_H
|
||||
|
||||
// In Use Flag codes
|
||||
#define USEFLAG_AVAILABLE 0x00
|
||||
|
@ -89,4 +89,3 @@ void PackIP(IPaddress ipAddr, PackedIP *ipPack);
|
|||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _IPXSERVER_H_
|
||||
#define _IPXSERVER_H_
|
||||
#ifndef DOSBOX_IPXSERVER_H_
|
||||
#define DOSBOX_IPXSERVER_H_
|
||||
|
||||
#if C_IPX
|
||||
|
||||
|
@ -47,4 +47,3 @@ Bit8u packetCRC(Bit8u *buffer, Bit16u bufSize);
|
|||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _KEYBOARD_H_
|
||||
#define _KEYBOARD_H_
|
||||
#ifndef DOSBOX_KEYBOARD_H
|
||||
#define DOSBOX_KEYBOARD_H
|
||||
|
||||
enum KBD_KEYS {
|
||||
KBD_NONE,
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef MAPPER_H_
|
||||
#define MAPPER_H_
|
||||
#ifndef DOSBOX_MAPPER_H
|
||||
#define DOSBOX_MAPPER_H
|
||||
|
||||
enum MapKeys {
|
||||
MK_f1,MK_f2,MK_f3,MK_f4,MK_f5,MK_f6,MK_f7,MK_f8,MK_f9,MK_f10,MK_f11,MK_f12,
|
||||
|
|
|
@ -16,10 +16,10 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* $Id: mouse.h,v 1.8 2005-02-10 10:20:47 qbix79 Exp $ */
|
||||
/* $Id: mouse.h,v 1.9 2005-03-24 10:32:09 qbix79 Exp $ */
|
||||
|
||||
#ifndef _MOUSE_H_
|
||||
#define _MOUSE_H_
|
||||
#ifndef DOSBOX_MOUSE_H
|
||||
#define DOSBOX_MOUSE_H
|
||||
|
||||
void Mouse_ShowCursor(void);
|
||||
void Mouse_HideCursor(void);
|
||||
|
@ -35,5 +35,4 @@ void Mouse_ButtonReleased(Bit8u button);
|
|||
void Mouse_AutoLock(bool enable);
|
||||
void Mouse_NewVideoMode(void);
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -16,13 +16,17 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* $Id: paging.h,v 1.14 2005-02-10 10:20:47 qbix79 Exp $ */
|
||||
/* $Id: paging.h,v 1.15 2005-03-24 10:32:09 qbix79 Exp $ */
|
||||
|
||||
#ifndef _PAGING_H_
|
||||
#define _PAGING_H_
|
||||
#ifndef DOSBOX_PAGING_H
|
||||
#define DOSBOX_PAGING_H
|
||||
|
||||
#ifndef DOSBOX_DOSBOX_H
|
||||
#include "dosbox.h"
|
||||
#endif
|
||||
#ifndef DOSBOX_MEM_H
|
||||
#include "mem.h"
|
||||
#endif
|
||||
|
||||
class PageDirectory;
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __PIC_H
|
||||
#define __PIC_H
|
||||
#ifndef DOSBOX_PIC_H
|
||||
#define DOSBOX_PIC_H
|
||||
|
||||
|
||||
/* CPU Cycle Timing */
|
||||
|
@ -60,4 +60,3 @@ void PIC_RemoveEvents(PIC_EventHandler handler);
|
|||
|
||||
void PIC_SetIRQMask(Bitu irq, bool masked);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,10 +16,12 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#if !defined __REGS_H
|
||||
#define __REGS_H
|
||||
#ifndef DOSBOX_REGS_H
|
||||
#define DOSBOX_REGS_H
|
||||
|
||||
#include <mem.h>
|
||||
#ifndef DOSBOX_MEM_H
|
||||
#include "mem.h"
|
||||
#endif
|
||||
|
||||
#define FLAG_CF 0x00000001
|
||||
#define FLAG_PF 0x00000004
|
||||
|
@ -165,4 +167,3 @@ enum {
|
|||
#define reg_flags cpu_regs.flags
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __RENDER_H
|
||||
#define __RENDER_H
|
||||
#ifndef DOSBOX_RENDER_H
|
||||
#define DOSBOX_RENDER_H
|
||||
|
||||
typedef void (* RENDER_Line_Handler)(const Bit8u * src);
|
||||
|
||||
|
@ -29,4 +29,3 @@ extern RENDER_Line_Handler RENDER_DrawLine;
|
|||
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,8 +16,9 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _TIMER_H_
|
||||
#define _TIMER_H_
|
||||
#ifndef DOSBOX_TIMER_H
|
||||
#define DOSBOX_TIMER_H
|
||||
|
||||
/* underlying clock rate in HZ */
|
||||
#include <SDL.h>
|
||||
|
||||
|
@ -35,4 +36,3 @@ void TIMER_DelTickHandler(TIMER_TickHandler handler);
|
|||
void TIMER_AddTick(void);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,11 +16,12 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef VGA_H_
|
||||
#define VGA_H_
|
||||
#ifndef DOSBOX_VGA_H
|
||||
#define DOSBOX_VGA_H
|
||||
|
||||
#include <mem.h>
|
||||
#ifndef DOSBOX_DOSBOX_H
|
||||
#include "dosbox.h"
|
||||
#endif
|
||||
|
||||
enum VGAModes {
|
||||
M_CGA2,M_CGA4,
|
||||
|
@ -360,4 +361,3 @@ extern Bit32u Expand16BigTable[0x10000];
|
|||
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __VIDEO_H
|
||||
#define __VIDEO_H
|
||||
#ifndef DOSBOX_VIDEO_H
|
||||
#define DOSBOX_VIDEO_H
|
||||
|
||||
typedef void (* GFX_ResetCallBack)(void);
|
||||
|
||||
|
@ -67,4 +67,3 @@ void GFX_CaptureMouse(void);
|
|||
extern bool mouselocked; //true if mouse is confined to window
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue