view pidgin/plugins/crazychat/main.c @ 32090:055a33b6bf59

Also show FirstName and LastName in search-results and friend-suggestions. (These are not a new strings, since they already exist in the file).
author andrew.victor@mxit.com
date Sun, 15 May 2011 20:27:51 +0000
parents a8cc50c2279f
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;
}