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.
27 lines
725 B
C
27 lines
725 B
C
/*
|
|
File: PromptForUser.h
|
|
|
|
Contains: Utility routines for looking up the internationally correct '¥'
|
|
symbol. Routines provided by Kevin MacDonell
|
|
|
|
Written by: Fred Monroe, Kevin MacDonell
|
|
|
|
Copyright: © 1992 by Apple Computer, Inc., all rights reserved.
|
|
|
|
Change History (most recent first):
|
|
|
|
<3> 4/2/92 FM #1020547 make GetBullet use pascal calling conventions
|
|
<2> 4/1/92 FM Utility routines for looking up the internationally correct '¥'
|
|
symbol. Provided by Kevin MacDonell
|
|
|
|
*/
|
|
|
|
// low memory globals used
|
|
#define SysFontFam 0x0BA6
|
|
|
|
// characters
|
|
#define BulletMark 0xA5
|
|
|
|
pascal char GetPasswordBullet(void);
|
|
char GetIntlTokenChar(short whichToken, short whichScript, char defaultChar);
|