home *** CD-ROM | disk | FTP | other *** search
- /* PCommonMacify Common
-
- Name: PCommonMacify.c
- Function: Common for the Prototyper specific code.
- History: 3/15/91 Original by Prototyper 3.0
- */
-
-
- #include "PCommonMacify.h" /* Common */
-
- /* ======================================================= */
-
-
-
- UserEventHRec UserEventList; /* User Event record list start */
- EventRecord myEvent; /* Event record for all events */
- Boolean WNE; /* WaitNextEvent trap is available */
- short SleepValue; /* Sleep value for Wait on events */
- Boolean doneFlag; /* Exit program flag */
- TEHandle theInput; /* Used in text edit selections */
- Rect tempRect; /* Temporary rect, not for long term use */
- Str255 sTemp; /* Temporary string, not for long term use */
- Boolean HasColorQD; /* Flag for Color QuickDraw being available */
- Boolean HasFPU; /* Flag for Floating Point Math Chip being available */
- Boolean InTheForeground; /* Flag for running in MultiFinder foreground */
- short tempChar; /*Temporary use character*/
- SFTypeList typeList; /* For use in opening files */
- OSErr ErrorCode; /* For use in reading and writing files */
- SFReply Reply; /* For use in getting file names */
- short inputRefNum; /* For the input file */
- short outputRefNum; /* For the output file */
- Str255 inputFileName; /* For the input file */
- Str255 outputFileName; /* For the output file */
-
- MenuHandle Menu_Apple; /* Menu handle */
- MenuHandle Menu_File; /* Menu handle */
- MenuHandle Menu_Edit; /* Menu handle */
-
- /* Variables for the modal dialog titled "About_Dialog" */
-
-
-
- /* ======================================================= */
-
-
-