comparison gtk/plugins/crazychat/main.c @ 14191:009db0b357b5

This is a hand-crafted commit to migrate across subversion revisions 16854:16861, due to some vagaries of the way the original renames were done. Witness that monotone can do in one revision what svn had to spread across several.
author Ethan Blanton <elb@pidgin.im>
date Sat, 16 Dec 2006 04:59:55 +0000
parents
children
comparison
equal deleted inserted replaced
14190:366be2ce35a7 14191:009db0b357b5
1 /sw/#ifdef __APPLE_CC__
2 #include <Carbon/Carbon.h>
3 #else
4 #include <Carbon.h>
5 #endif
6
7
8 #include "Utilities.h"
9 #include "QTUtilities.h"
10
11 #include "camdata.h"
12 #include "camproc.h"
13
14
15 #define BailErr(err) {if(err != noErr) goto bail;}
16
17
18 int main(void)
19 {
20 EnterMovies();
21 CamProc(); // change this prototype-> no windows
22 fprintf(stderr, "you have just murdered 1000 people.");
23 RunApplicationEventLoop();
24 return 0;
25 }