uuUndo/DSGlobals.h

1 line
1.9 KiB
C
Raw Permalink Normal View History

2015-02-06 08:56:41 +00:00
/****************************************************************************** ** ** Project Name: DropShell ** File Name: DSGlobals.h ** ** Description: Globals used by DropShell ** ******************************************************************************* ** A U T H O R I D E N T I T Y ******************************************************************************* ** ** Initials Name ** -------- ----------------------------------------------- ** LDR Leonard Rosenthol ** MTC Marshall Clow ** SCS Stephan Somogyi ** ******************************************************************************* ** R E V I S I O N H I S T O R Y ******************************************************************************* ** ** Date Time Author Description ** -------- ----- ------ --------------------------------------------- ** 12/09/91 LDR Added gSplashScreen ** 11/24/91 LDR Added some new #defs & a #inc for DSUtils ** 10/29/91 SCS Changes for THINK C 5 ** 10/28/91 LDR Officially renamed DropShell (from QuickShell) ** 10/06/91 00:02 MTC Converted to MPW C ** 04/09/91 00:03 LDR Added to Projector ** ******************************************************************************/ #pragma once #ifndef __DSGLOBALS_H__ #define __DSGLOBALS_H__ #ifndef THINK_C #include <Types.h> #include <Memory.h> #include <QuickDraw.h> #include <OSUtils.h> #include <ToolUtils.h> #include <Menus.h> #include <Packages.h> #include <Traps.h> #include <Files.h> #endif #include <Aliases.h> #include <AppleEvents.h> #include <GestaltEqu.h> #include <Processes.h> #define kAppleNum 128 #define kFileNum 129 #define kErrStringID 100 #define kCantRunErr 1 #define kAEVTErr 2 extern Boolean gDone, gOApped, gHasAppleEvents, gWasEvent; extern EventRecord gEvent; extern MenuHandle gAppleMenu, gFileMenu; extern WindowPtr gSplashScreen; #endif __DSGLOBALS_H__