mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-12-31 19:33:04 +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.
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/* --------------------------------------------------------------------------------------
|
|
|
|
Copyright © 1990-1991, Apple Computer, Inc, All Rights Reserved.
|
|
|
|
File: QuickDrawUtility.h
|
|
|
|
Author: John Farmer
|
|
|
|
Contains: Header file information for the QuickDrawUtility.c file.
|
|
|
|
Revisions: (most recent first):
|
|
|
|
ID Date Description
|
|
|
|
System 6.1.0 and 7.0 Changes:
|
|
|
|
<1> 01/30/91 John Farmer - Created file.
|
|
|
|
----------------------------------------------------------------------------------- */
|
|
|
|
|
|
// Include Directives
|
|
|
|
|
|
#include "QuickDrawPrivate.h"
|
|
|
|
|
|
// Prototypes
|
|
|
|
|
|
Fixed GetFixedFontSize( void );
|
|
Boolean IsColorPort( GrafPtr port );
|
|
Fixed GetFixedHorizontalPen( void );
|
|
void MoveFixedHorizontalPen( Fixed horizontalOffset );
|
|
Fixed FixedStdTxMeas( Integer textLength, UnsignedCharacterPointer textBuffer, Point *numeratorPointer, Point *denominatorPointer, FontInfo *fontInformationPointer );
|
|
|
|
extern pascal Fixed GetFontAdj( void );
|
|
extern pascal Integer GetPnLocFixed( void );
|
|
extern pascal Fixed GetQDRunSlop( void );
|
|
extern pascal Fixed GetQDChExtra( void );
|
|
extern pascal void SetPnLocFixed( Integer pnLocFixed );
|
|
extern pascal void SetQDChExtra( Fixed qdChExtra );
|
|
extern pascal void SetQDRunSlop( Fixed qdRunSlop ); |