Mercurial > pidgin
annotate plugins/crazychat/main.c @ 12867:cf3540702d21
[gaim-migrate @ 15218]
A patch from Ranma42 in SF Bug #1220557, with lots of changes by me.
This merges gaim_conv_chat_remove_users and gaim_conv_chat_remove_user.
As I did with gaim_conv_chat_add_user and gaim_conv_chat_add_users,
gaim_conv_chat_remove_user is just a simple wrapper. The conversation UI op
chat_remove_user has similarly been removed, in favor of UIs only having to
implement one function to remove users.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Sat, 14 Jan 2006 00:06:24 +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 } |
