Mercurial > pidgin
view plugins/crazychat/main.c @ 11291:57fccea36e36
[gaim-migrate @ 13491]
Gaim should pretty much never call g_assert. If any of these changes
are in your code, you should try to take a look at the change and
make sure Gaim won't crash after the function g_return_if_fails.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 18 Aug 2005 03:14:29 +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; }