mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2026-03-13 12:42:28 +00:00
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.
37 lines
859 B
C
37 lines
859 B
C
/* --------------------------------------------------------------------------------------
|
|
|
|
Copyright © 1990-1991, Apple Computer, Inc, All Rights Reserved.
|
|
|
|
File: BaseIncludes.h
|
|
|
|
Author: John Farmer
|
|
|
|
Contains: Include statements for header files common to the majority of project files.
|
|
Other common header files should be added to this file as needed.
|
|
|
|
Revisions: (most recent first):
|
|
|
|
ID Date Description
|
|
|
|
<1> 11/29/90 John Farmer - Create file and it's original contents.
|
|
|
|
----------------------------------------------------------------------------------- */
|
|
|
|
|
|
#ifndef __BaseIncludes__
|
|
#define __BaseIncludes__
|
|
|
|
|
|
// Includes
|
|
|
|
|
|
#include "Types.h"
|
|
#include "BaseTypes.h"
|
|
#include "BaseConstants.h"
|
|
#include "Formatting.h"
|
|
#include "ResourceTypes.h"
|
|
#include "CompileFlags.h"
|
|
|
|
|
|
#endif __BaseIncludes__
|