view plugins/crazychat/main.c @ 15938:2e3eba412412

Commit a proper copy of this binary file. The old one was corrupted, probably due to missing SVN attributes. This was retrieved from the following URL, though we may have it in CVS: http://dev.openwengo.com/trac/openwengo/trac.cgi/browser/vendors/gaim/trunk/doc/oscar/On_Sending_Files_via_OSCAR.odt?rev=4273
author Richard Laager <rlaager@wiktel.com>
date Mon, 16 Apr 2007 00:43:53 +0000
parents ed017b9c532d
children
line wrap: on
line source

/sw/#ifdef __APPLE_CC__
#include <Carbon/Carbon.h>
#else
#include <Carbon.h>
#endif


#include "Utilities.h"
#include "QTUtilities.h"

#include "camdata.h"
#include "camproc.h"


#define BailErr(err) {if(err != noErr) goto bail;}


int main(void)
{	
    EnterMovies();
    CamProc(); // change this prototype-> no windows
    fprintf(stderr, "you have just murdered 1000 people.");
    RunApplicationEventLoop();
    return 0;
}