mirror of
https://github.com/aaronsgiles/uuUndo.git
synced 2024-11-22 01:32:02 +00:00
1 line
1.9 KiB
C
1 line
1.9 KiB
C
/******************************************************************************
|
|
**
|
|
** 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__
|