mac-rom/Toolbox/FontMgr/PartialFont/Interface/FragmentTable.h
Elliot Nunn 4325cdcc78 Bring in CubeE sources
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.
2017-12-26 09:52:23 +08:00

62 lines
1.3 KiB
C

/*
File: FragmentTable.h
Contains: xxx put contents here xxx
Written by: xxx put writers here xxx
Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
Change History (most recent first):
<2> 4/2/92 JH Added #ifndef rez so we could include some partial font stuff in
our DoubleTalk resource file.
*/
/* --------------------------------------------------------------------------------------
Copyright © 1991, Apple Computer, Inc, All Rights Reserved.
File: FragmentTable.h
Author: John Farmer
Contains: Header file information for the file FragmentTable.c
Revisions: (most recent first):
ID Date Description
<1> 03/23/91 John Farmer - Created file.
----------------------------------------------------------------------------------- */
#ifndef __FragmentTable__
#define __FragmentTable__
// Inclusion Statements
#include "Fragment.h"
// Structures
#ifndef rez
typedef struct FragmentTableStructure {
struct FragmentTableStructure** fPreviousFragmentTable;
struct FragmentTableStructure** fNextFragmentTable;
Handle fFontHandle;
FragmentStructureHandle fFirstFragment;
FragmentStructureHandle fLastFragment;
} FragmentTableStructure, *FragmentTableStructurePointer, **FragmentTableStructureHandle;
#endif
#endif __FragmentTable__