1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/* SCCS Id: @(#)macconf.h 3.2 94/12/15 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
#ifdef MAC
# ifndef MACCONF_H
# define MACCONF_H
/*
* Compiler selection is based on the following symbols:
*
* applec MPW compiler
* THINK_C Think C compiler
* __MWERKS__ Metrowerks compiler
*
* We use these early in config.h to define some needed symbols,
* including MAC.
#
# The Metrowerks compiler defines __STDC__ (which sets NHSTC) and uses
# WIDENED_PROTOTYPES (defined if UNWIDENED_PROTOTYPES is undefined and
# NHSTDC is defined).
*/
# ifdef applec
# define MAC_MPW32 /* Headers, and for avoiding a bug */
# endif
# ifndef __powerc
# define MAC68K /* 68K mac (non-powerpc) */
# endif
# define RANDOM
# define NO_SIGNAL /* You wouldn't believe our signals ... */
# define FILENAME 256
# define NO_TERMS /* For tty port (see wintty.h) */
# define TEXTCOLOR /* For Mac TTY interface */
# define CHANGE_COLOR
#include "system.h"
typedef long off_t ;
/*
* Try and keep the number of files here to an ABSOLUTE minimum !
* include the relevant files in the relevant .c files instead !
*/
#include <segload.h>
#include <stdlib.h>
#include <windows.h>
#include <memory.h>
#include <quickdraw.h>
#include <events.h>
#include <controls.h>
#include <dialogs.h>
#include <fonts.h>
/*
* Turn off the Macsbug calls for the production version.
*/
#if 0
# undef Debugger
# undef DebugStr
# define Debugger()
# define DebugStr(aStr)
#endif
/*
* We could use the PSN under sys 7 here ...
*/
#ifndef __CONDITIONALMACROS__ /* universal headers */
# define getpid() 1
# define getuid() 1
#endif
# define index strchr
# define rindex strrchr
# define Rand random
# define error progerror
extern void progerror(const char *,...); /* why not just error ??? */
# if !defined(O_WRONLY)
# ifdef __MWERKS__
#include <unix.h>
# ifndef O_EXCL
/* MW 4.5 doesn't have this, so just use a bogus value */
# define O_EXCL 0x80000000
# endif
# else
#include <fcntl.h>
# endif
# endif
/*
* Don't redefine these Unix IO functions when making LevComp or DgnComp for
* MPW. With MPW, we make them into MPW tools, which use unix IO. SPEC_LEV
* and DGN_COMP are defined when compiling for LevComp and DgnComp respectively.
*/
#if !(defined(applec) && (defined(SPEC_LEV) || defined(DGN_COMP)))
# define creat maccreat
# define open macopen
# define close macclose
# define read macread
# define write macwrite
# define lseek macseek
#endif
# define TEXT_TYPE 'TEXT'
# define LEVL_TYPE 'LEVL'
# define BONE_TYPE 'BONE'
# define SAVE_TYPE 'SAVE'
# define PREF_TYPE 'PREF'
# define DATA_TYPE 'DATA'
# define MAC_CREATOR 'nh31' /* Registered with DTS ! */
typedef struct macdirs {
Str32 dataName ;
short dataRefNum ;
long dataDirID ;
Str32 saveName ;
short saveRefNum ;
long saveDirID ;
Str32 levelName ;
short levelRefNum ;
long levelDirID ;
} MacDirs ;
typedef struct macflags {
Bitfield ( processes , 1 ) ;
Bitfield ( color , 1 ) ;
Bitfield ( folders , 1 ) ;
Bitfield ( tempMem , 1 ) ;
Bitfield ( help , 1 ) ;
Bitfield ( fsSpec , 1 ) ;
Bitfield ( trueType , 1 ) ;
Bitfield ( aux , 1 ) ;
Bitfield ( alias , 1 ) ;
Bitfield ( standardFile , 1 ) ;
Bitfield ( hasDebugger , 1 ) ;
} MacFlags ;
extern MacDirs theDirs ; /* used in files.c */
extern MacFlags macFlags ;
/*
* Define PORT_HELP to be the name of the port-specfic help file.
* This file is included into the resource fork of the application.
*/
#define PORT_HELP "MacHelp"
#define MAC_GRAPHICS_ENV
# endif /* ! MACCONF_H */
#endif /* MAC */
|