mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-10-31 09:05:19 +00:00
67 lines
2.1 KiB
C
67 lines
2.1 KiB
C
/*
|
|
* sysdeps.h - System dependent definitions for BeOS
|
|
*
|
|
* SheepShaver (C) 1997-2004 Christian Bauer and Marc Hellwig
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#ifndef SYSDEPS_H
|
|
#define SYSDEPS_H
|
|
|
|
// Do we have std namespace?
|
|
#ifdef __POWERPC__
|
|
#define NO_STD_NAMESPACE
|
|
#endif
|
|
|
|
#include <assert.h>
|
|
#include <sys/types.h>
|
|
#include <KernelKit.h>
|
|
|
|
#include "user_strings_beos.h"
|
|
|
|
// Are we using a PPC emulator or the real thing?
|
|
#ifdef __POWERPC__
|
|
#define EMULATED_PPC 0
|
|
#define WORDS_BIGENDIAN 1
|
|
#else
|
|
#define EMULATED_PPC 1
|
|
#undef WORDS_BIGENDIAN
|
|
#endif
|
|
|
|
#define POWERPC_ROM 1
|
|
|
|
// Time data type for Time Manager emulation
|
|
typedef bigtime_t tm_time_t;
|
|
|
|
// 64 bit file offsets
|
|
typedef off_t loff_t;
|
|
|
|
// Data types
|
|
typedef uint32 uintptr;
|
|
typedef int32 intptr;
|
|
|
|
// Macro for calling MacOS routines
|
|
#define CallMacOS(type, proc) (*(type)proc)()
|
|
#define CallMacOS1(type, proc, arg1) (*(type)proc)(arg1)
|
|
#define CallMacOS2(type, proc, arg1, arg2) (*(type)proc)(arg1, arg2)
|
|
#define CallMacOS3(type, proc, arg1, arg2, arg3) (*(type)proc)(arg1, arg2, arg3)
|
|
#define CallMacOS4(type, proc, arg1, arg2, arg3, arg4) (*(type)proc)(arg1, arg2, arg3, arg4)
|
|
#define CallMacOS5(type, proc, arg1, arg2, arg3, arg4, arg5) (*(type)proc)(arg1, arg2, arg3, arg4, arg5)
|
|
#define CallMacOS6(type, proc, arg1, arg2, arg3, arg4, arg5, arg6) (*(type)proc)(arg1, arg2, arg3, arg4, arg5, arg6)
|
|
#define CallMacOS7(type, proc, arg1, arg2, arg3, arg4, arg5, arg6, arg7) (*(type)proc)(arg1, arg2, arg3, arg4, arg5, arg6, arg7)
|
|
|
|
#endif
|