Mercurial > pidgin
annotate plugins/crazychat/main.c @ 13515:f5d4300aeed8
[gaim-migrate @ 15891]
Fix sf bug #1443092, Events logging not working properly?
"signed on" and "signed off" for people in your buddy list
are now correctly logged to the system log.
Richard, someone had already left a note in this function
to make a change after the string freeze (I think it was
you). We should still make a change after the string freeze,
but the change is different now than it was before this commit.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Wed, 15 Mar 2006 04:41:44 +0000 |
| parents | ed017b9c532d |
| children |
| rev | line source |
|---|---|
| 11218 | 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 } |
