home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / DocShell / Main.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  976 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Main.cpp
  3.  
  4.     Contains:    just enough to create and run a SOM Shell object
  5.  
  6.     Written by:    Tantek Çelik
  7.  
  8.     Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <9>      1/6/95    jpa        Removed the pragma; PPCC doesn't grok it.
  13.                                     [1196515]
  14.          <8>    11/15/94    NP        Woops. Last checkin was a mistake.
  15.                                     Reverting to version 6.
  16.          <6>     8/11/94    eeh        move everything to ShellMain() in
  17.                                     RlShell.cpp
  18.          <5>     7/28/94    TÇ        put ifdef ODDEBUG around DebugStr. #1155844
  19.          <4>     7/21/94    TÇ        removed SOM_Trace enablement. It is now in
  20.                                     the Shell.
  21.          <3>     7/11/94    jpa        Call ODInitMemory and ODInitExceptions.
  22.                                     Also added MaxApplZone and some
  23.                                     MoreMasters.
  24.          <2>     6/27/94    TÇ        added toolbox includes and
  25.                                     InitThisThatAndTheOther calls
  26.          <1>      6/3/94    TÇ        first checked in
  27.     To Do:
  28.     In Progress:
  29.         
  30. */
  31.  
  32.  
  33. #ifndef _SHLMAIN_
  34. #include "ShlMain.h"
  35. #endif
  36.  
  37.  
  38. int main (void)
  39. {
  40.     return ShellMain();
  41. }
  42.  
  43.