This is WideScreen_main.m in view mode; [Download] [Up]
/***(WideScreen_main.m)********************************************************
*H* Main program of the WideScreen application. V0.3 08-MAY-92 *
******************************************************************************/
#import <stdlib.h>
#import "VdtApplication.h"
/******************************************************************************
* FUNCTION: main *
******************************************************************************/
void main
(/* Arguments */
int argc, /* Command line argument count */
char *argv[]) /* Command line argument array */
{/* BEGIN main */
/* Create an instance of the specialized application class */
NXApp = [VdtApplication new];
/* Determine which default database entries the app responds to */
[NXApp registerAppDefaults];
/* Load the primary NIB object */
[NXApp loadNibSection:"WideScreen.nib" owner:NXApp];
/* Run until terminated */
[NXApp run];
[NXApp free];
exit(0);
}/* END main */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.