home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / debug-utils / pv / pvdevelop / pvdevelop.lha / include / PV / EvalBase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-13  |  587 b   |  35 lines

  1. #ifndef PV_EVALBASE_H
  2. #define PV_EVALBASE_H TRUE
  3. /*
  4. **  $Filename: EvalBase.h $
  5. **  $Release: 1.02 $
  6. **  $Revision: 37.346 $
  7. **  $Date: 15 Sep 91 $
  8. **
  9. **  Structure definitions for Eval Base (see 'TheWizardCorner')
  10. **
  11. **  © 1991 Jorrit Tyberghein, included with PowerVisor
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef PV_PVMEMORY_H
  16. #include <pv/PVMemory.h>
  17. #endif
  18.  
  19.  
  20. #define VARTYPE_VARIABLE    0
  21. #define VARTYPE_CONSTANT    1
  22. #define VARTYPE_SPECIAL        2
  23. #define VARTYPE_FUNCTION    3
  24.  
  25.  
  26. struct EvalBase
  27.     {
  28.         ULONG pad0;
  29.         ULONG pad1;
  30.         struct PVMemoryBlock Variables;
  31.         UBYTE Priorities[18];
  32.     };
  33.  
  34. #endif
  35.