view pidgin/plugins/crazychat/main.c @ 16451:af1274975769

merge of 'd1933818a76d2d05c8161d9aa1491e1b46b6d92f' and 'e3c852fbe4f3bb99edd59ddf1eae85c8ebbb570e'
author Sean Egan <seanegan@gmail.com>
date Thu, 26 Apr 2007 19:02:11 +0000
parents 5fe8042783c1
children a8cc50c2279f
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;
}