1
0
Fork 0

new include system

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2136
This commit is contained in:
Peter Veenstra 2005-03-24 10:18:45 +00:00
parent e80222f29b
commit 989727eaae
4 changed files with 23 additions and 18 deletions

View file

@ -16,12 +16,18 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __CPU_H
#define __CPU_H
#ifndef DOSBOX_CPU_H
#define DOSBOX_CPU_H
#ifndef DOSBOX_DOSBOX_H
#include "dosbox.h"
#endif
#ifndef DOSBOX_REGS_H
#include "regs.h"
#endif
#ifndef DOSBOX_MEM_H
#include "mem.h"
#endif
/* CPU Cycle Timing */
extern Bits CPU_Cycles;
@ -418,4 +424,3 @@ INLINE void CPU_SetFlagsw(Bitu word) {
#endif

View file

@ -16,10 +16,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: cross.h,v 1.12 2005-02-10 10:20:47 qbix79 Exp $ */
/* $Id: cross.h,v 1.13 2005-03-24 10:18:45 qbix79 Exp $ */
#ifndef _CROSS_H
#define _CROSS_H
#ifndef DOSBOX_CROSS_H
#define DOSBOX_CROSS_H
#include <stdio.h>
#include <sys/stat.h>
@ -57,4 +57,3 @@
#endif
#endif

View file

@ -16,10 +16,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: dma.h,v 1.13 2005-02-10 10:20:47 qbix79 Exp $ */
/* $Id: dma.h,v 1.14 2005-03-24 10:18:45 qbix79 Exp $ */
#ifndef __DMA_H
#define __DMA_H
#ifndef DOSBOX_DMA_H
#define DOSBOX_DMA_H
enum DMAEvent {
DMA_REACHED_TC,
@ -89,5 +89,3 @@ extern DmaChannel *DmaChannels[8];
extern DmaController *DmaControllers[2];
#endif

View file

@ -16,13 +16,17 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: dos_inc.h,v 1.52 2005-02-10 10:20:47 qbix79 Exp $ */
/* $Id: dos_inc.h,v 1.53 2005-03-24 10:18:45 qbix79 Exp $ */
#ifndef DOS_H_
#define DOS_H_
#ifndef DOSBOX_DOS_INC_H
#define DOSBOX_DOS_INC_H
#include <dos_system.h>
#include <mem.h>
#ifndef DOSBOX_DOS_SYSTEM_H
#include "dos_system.h"
#endif
#ifndef DOSBOX_MEM_H
#include "mem.h"
#endif
#ifdef _MSC_VER
#pragma pack (1)
@ -584,4 +588,3 @@ INLINE Bit8u RealHandle(Bit16u handle) {
}
#endif