3. "6F^5D!$^PY
UNIT MemTypes;

{  Copyright 1983 Apple Computer Inc.  }

{types which are basic to all Macintosh applications}
{RS Apr 30 84  created by taking types from quickdraw and toolintf}

INTERFACE

TYPE

  SignedByte = -128..127;    { any byte in memory }
  Byte       = 0..255;       { Unsigned byte for fontmgr }
  Ptr        = ^SignedByte;  { blind pointer }
  Handle     = ^Ptr;         { pointer to a master pointer }
  ProcPtr    = Ptr;          { pointer to a procedure }
  Fixed      = LongInt;

  Str255    =  String[255];
  StringPtr = ^Str255;
  StringHandle = ^StringPtr;

IMPLEMENTATION

END. { of UNIT }

