home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
source
/
netnwscd.sit
/
News.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-04
|
373b
|
23 lines
/*****
* 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();
}