ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/BeOS/sysdeps.h
Revision: 1.2
Committed: 2003-10-26T00:32:27Z (21 years ago) by cebix
Content type: text/plain
Branch: MAIN
Changes since 1.1: +9 -0 lines
Log Message:
- fixed compilation problems under BeOS
- boot drive wasn't set correctly

File Contents

# User Rev Content
1 cebix 1.1 /*
2     * sysdeps.h - System dependent definitions for BeOS
3     *
4     * SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig
5     *
6     * This program is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19     */
20    
21     #ifndef SYSDEPS_H
22     #define SYSDEPS_H
23    
24 cebix 1.2 // Do we have std namespace?
25     #ifdef __POWERPC__
26     #define NO_STD_NAMESPACE
27     #endif
28    
29 cebix 1.1 #include <assert.h>
30     #include <sys/types.h>
31     #include <KernelKit.h>
32    
33     #include "user_strings_beos.h"
34    
35     // Are we using a PPC emulator or the real thing?
36     #ifdef __POWERPC__
37     #define EMULATED_PPC 0
38     #else
39     #define EMULATED_PPC 1
40     #endif
41    
42     #define POWERPC_ROM 1
43    
44     // Time data type for Time Manager emulation
45     typedef bigtime_t tm_time_t;
46    
47     // 64 bit file offsets
48     typedef off_t loff_t;
49 cebix 1.2
50     // Data types
51     typedef uint32 uintptr;
52     typedef int32 intptr;
53 cebix 1.1
54     // Macro for calling MacOS routines
55     #define CallMacOS(type, proc) (*(type)proc)()
56     #define CallMacOS1(type, proc, arg1) (*(type)proc)(arg1)
57     #define CallMacOS2(type, proc, arg1, arg2) (*(type)proc)(arg1, arg2)
58     #define CallMacOS3(type, proc, arg1, arg2, arg3) (*(type)proc)(arg1, arg2, arg3)
59     #define CallMacOS4(type, proc, arg1, arg2, arg3, arg4) (*(type)proc)(arg1, arg2, arg3, arg4)
60     #define CallMacOS5(type, proc, arg1, arg2, arg3, arg4, arg5) (*(type)proc)(arg1, arg2, arg3, arg4, arg5)
61     #define CallMacOS6(type, proc, arg1, arg2, arg3, arg4, arg5, arg6) (*(type)proc)(arg1, arg2, arg3, arg4, arg5, arg6)
62     #define CallMacOS7(type, proc, arg1, arg2, arg3, arg4, arg5, arg6, arg7) (*(type)proc)(arg1, arg2, arg3, arg4, arg5, arg6, arg7)
63    
64     #endif