home *** CD-ROM | disk | FTP | other *** search
- /*****
- * News.c
- *
- * A starter main file for writing programs with the
- * THINK Class Library
- *
- * Copyright ⌐ 1990 Symantec Corporation. All rights reserved.
- *
- *****/
-
- #include "CNewsApp.h"
-
- extern CApplication *gApplication;
-
- void main()
-
- {
- gApplication = new(CNewsApp);
- ((CNewsApp *)gApplication)->IStarterApp();
- gApplication->Run();
- gApplication->Exit();
- }
-