home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / sun / volume1 / calctool / part01 / globals.h < prev    next >
Encoding:
Text File  |  1989-06-29  |  1.5 KB  |  42 lines

  1. /************************************************************************/
  2. /*    Copyright 1988 by Chuck Musciano and Harris Corporation        */
  3. /*                                    */
  4. /*    Permission to use, copy, modify, and distribute this software    */
  5. /*    and its documentation for any purpose and without fee is    */
  6. /*    hereby granted, provided that the above copyright notice    */
  7. /*    appear in all copies and that both that copyright notice and    */
  8. /*    this permission notice appear in supporting documentation, and    */
  9. /*    that the name of Chuck Musciano and Harris Corporation not be    */
  10. /*    used in advertising or publicity pertaining to distribution    */
  11. /*    of the software without specific, written prior permission.    */
  12. /*    Chuck Musciano and Harris Corporation make no representations    */
  13. /*    about the suitability of this software for any purpose.  It is    */
  14. /*    provided "as is" without express or implied warranty.        */
  15. /************************************************************************/
  16.  
  17. /************************************************************************/
  18. /*                                    */
  19. /*    Module:        globals.h                    */
  20. /*                                    */
  21. /*    Function:    Define global variables                */
  22. /*                                    */
  23. /*    Change History:    14 Nov 86    Creation            */
  24. /*                                    */
  25. /************************************************************************/
  26.  
  27. PUBLIC    int    curr_mode;
  28. PUBLIC    int    inverted;
  29. PUBLIC    int    temp_inverted;
  30.  
  31. PUBLIC    int    curr_base;
  32. PUBLIC    int    ee_mode;
  33. PUBLIC    int    eng_mode;
  34. PUBLIC    int    edit_ee;
  35. PUBLIC    int    trig_mode;
  36. PUBLIC    int    curr_width[5];
  37.  
  38. PUBLIC    double    v_stack[MAX_STACK];
  39. PUBLIC    int    o_stack[MAX_STACK];
  40. PUBLIC    int    v_top;
  41. PUBLIC    int    o_top;
  42.