home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-03 | 666 b | 36 lines | [TEXT/MMCC] |
- // AMReminderMain.cp -- Main
- // Created 01/01/95 12:01 PM by AppMaker
-
- #include "CAMReminderApp.h"
-
- #include <LGrowZone.h>
- #include <UDrawingState.h>
- #include <UMemoryMgr.h>
- #include <UPowerTools.h>
-
- //----------
- void
- main()
- {
- // Set Debugging options
- #ifdef Debug_Throw
- gDebugThrow = debugAction_Alert;
- #endif
-
- #ifdef Debug_Signal
- gDebugSignal = debugAction_Alert;
- #endif
-
- InitializeHeap(3);
- UQDGlobals::InitializeToolbox(&qd);
-
- #ifdef Debug_Signal // Check for missing MBAR, which
- CheckForInitialMBAR(); // probably means that there is no
- #endif // project resource file
-
- new LGrowZone(20000);
-
- CAMReminderApp theApp;
- theApp.Run();
- }
-