Pararena2/Headers/About.h
John Calhoun 806b9b47db First check-in.
This project was originally compiled with THINK C for the Macintosh.
The project file is a THINK C project file. Then there is the assembly
static library (SMS) that is linked in to provide fast, 4-channel sound
(written by Patrick Buckland). Resource files, a balloon file for
“balloon help” when it was a thing…. Good luck to anyone trying to
bring this beast back to life.
2016-01-27 20:50:55 -08:00

1 line
1.3 KiB
C
Executable File

//============================================================
//============================================================
//== ==
//== About Dialog Routines Header ==
//== ==
//============================================================
//============================================================
#pragma once
//======================================================== Prototypes
void HiLiteOkayButton (void);
void UnHiLiteOkayButton (void);
void UpdateMainPict (DialogPtr);
pascal Boolean AboutFilter (DialogPtr, EventRecord *, short *);
void DoAbout (void);
//======================================================== Constants
#define rAboutDialogID 150 // res ID of About dialog
#define buttItemOkay 1 // item number of okay button
#define textItemVers 2 // item number of version text
#define pictItemMain 4 // item number of main PICT
#define kOkayButtPICTNotHiLit 150 // res ID of hilit button PICT
#define kOkayButtPICTHiLit 151 // res ID of unhilit button PICT
#define kAboutBandWPICT 152 // res ID of main B&W PICT
#define kAboutColorPICT 153 // res ID of main color PICT
//======================================================== Global Vars
extern Boolean isColor, doZooms;