libs-gsweb/Examples/hello/Hello_main.m

15 lines
283 B
Mathematica
Raw Permalink Normal View History

#ifndef GNUSTEP
#include <GNUstepBase/GNUstep.h>
#endif
#include <WebObjects/WebObjects.h>
int main(int argc, const char *argv[])
{
int ret=0;
NSAutoreleasePool *arp = [NSAutoreleasePool new];
ret=WOApplicationMain(@"Hello", argc, argv);
[arp release];
return ret;
}