mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-01 11:29:27 +00:00
4325cdcc78
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included. The Tools directory, containing mostly junk, is also excluded.
42 lines
987 B
C
42 lines
987 B
C
/* --------------------------------------------------------------------------------------
|
|
|
|
Copyright © 1990-1991, Apple Computer, Inc, All Rights Reserved.
|
|
|
|
File: LowMemoryGlobals.h
|
|
|
|
Author: John Farmer
|
|
|
|
Contains: Definitions for low memory globals that are normally only defined in the
|
|
assembly equates.
|
|
|
|
Revisions: (most recent first):
|
|
|
|
ID Date Description
|
|
|
|
System 6.1.0 and 7.0 Changes:
|
|
|
|
<1> 11/29/90 John Farmer - Create file and it's original contents.
|
|
|
|
----------------------------------------------------------------------------------- */
|
|
|
|
|
|
#ifndef __LowMemoryGlobals__
|
|
#define __LowMemoryGlobals__
|
|
|
|
|
|
// Include Directives
|
|
|
|
|
|
#include "Fonts.h"
|
|
|
|
|
|
// Constants
|
|
|
|
|
|
#define gIntlSpec ((SMgrRecord**) 0x00000BA0)
|
|
#define gWidthTabHandle ((WidthTable***) 0x00000B2A)
|
|
#define gFMDefaultSize ((UnsignedByte*) 0x00000987)
|
|
#define gSysFontSize ((UnsignedInteger*) 0x00000BA8)
|
|
|
|
|
|
#endif __LowMemoryGlobals__ |