-- File: CountDefs.mesa
-- Edited by Sandman on September 4, 1980  12:03 PM

DIRECTORY
  CountPrivate USING [Mode],
  FormSW USING [EnumeratedNotifyProcType, NotifyProcType],
  Window USING [Handle];

CountDefs: DEFINITIONS =
  BEGIN

  SortClass: TYPE = {count, time};

  mon: CARDINAL = 0;
  zero: CARDINAL = 1;
  condition: CARDINAL = 2;
  printtables: CARDINAL = 3;
  printsorted: CARDINAL = 4;
  sort: CARDINAL = 5;
  printmodule: CARDINAL = 6;
  modulePos: CARDINAL = 7;
  setProcess: CARDINAL = 8;
  processPos: CARDINAL = 9;
  modePos: CARDINAL = 10;
  loadmatrix: CARDINAL = 11;
  groups: CARDINAL = 12;

  ParamNotify: FormSW.NotifyProcType;
  EnumerateNotify: FormSW.EnumeratedNotifyProcType;

  window: Window.Handle;

  monitorOn: BOOLEAN;
  module: STRING;
  process: STRING;
  sortClass: SortClass;
  mode: CountPrivate.Mode;

  END..