home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 August: Tool Chest / Apple_Developer_Group_August_1996_Tool_Chest.iso / Sample Code / Interapplication Communication / MenuScripter 3.1 / Sources / MSGlobals.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-20  |  1014 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     MSGlobals.c
  3.     
  4.     Version 3.1
  5.     
  6.     Copyright © 1995 Apple Computer, Inc., all rights reserved.
  7.     
  8.     MenuScripter by Nigel Humphreys and Jon Lansdell
  9.     AppleEvent to script extensions by Greg Sutton
  10. */
  11.  
  12. #define __COMPGLOBALS__
  13.  
  14. #include "MSGlobals.h"
  15.  
  16. #if defined(powerc) && !defined(__MWERKS__) // MetroWerks declares "qd" in their runtime
  17.     QDGlobals    qd;
  18. #endif
  19.  
  20. ControlActionUPP gScrollScriptVActionUPP;    /* support the Universal Interfaces */
  21. ControlActionUPP gScrollDocVActionUPP;
  22. ControlActionUPP gScrollDocHActionUPP;
  23. ControlActionUPP gDrawStyledTextUPP;
  24. ControlActionUPP gDrawScrollBarUPP;
  25.  
  26. short      gWCount;
  27. short      gNewDocCount;
  28. MenuHandle myMenus[kLastMenu+1];
  29. short      gFontMItem;
  30. Boolean    gQuitting;
  31. Cursor     editCursor;
  32. Cursor     waitCursor;
  33. Boolean    gInBackground;
  34.  
  35. AEIdleUPP    gAEIdleUPP;
  36.   
  37.   /*now for the environment variables set up by Gestalt*/
  38.   
  39. Boolean    gGestaltAvailable;
  40. Boolean    gAppleEventsImplemented;
  41. Boolean    gAliasManagerImplemented;
  42. Boolean    gOutlineFontsImplemented;
  43.