Jabber WindowGram Client (JWGC)

Introduction Screenshots Installation Downloads
Documentation Browse Source Resources Project Site

Stable Version
-none-

Latest Version
beta5



Main Page | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

error.h

Go to the documentation of this file.
00001 #ifndef error_MODULE
00002 #define error_MODULE
00003 
00004 /*
00005  *      Copyright (c) 1989 by the Massachusetts Institute of Technology.
00006  *      For copying and distribution information, see the file
00007  *      "mit-copyright.h".
00008  *
00009  *      Modified for jwgc by Daniel Henninger.
00010  */
00011 
00012 #include "mit-copyright.h"
00013 
00014 #include <stdio.h>
00015 
00016 #define  ERROR(a)                { fprintf(stderr, "jwgc: "); \
00017                                    fprintf(stderr, a);\
00018                                    fflush(stderr); }
00019 
00020 #define  ERROR2(a,b)             { fprintf(stderr, "jwgc: "); \
00021                                    fprintf(stderr, a, b);\
00022                                    fflush(stderr); }
00023 
00024 #define  ERROR3(a,b,c)           { fprintf(stderr, "jwgc: "); \
00025                                    fprintf(stderr, a, b, c);\
00026                                    fflush(stderr); }
00027 
00028 #define  ERROR4(a,b,c,d)         { fprintf(stderr, "jwgc: "); \
00029                                    fprintf(stderr, a, b, c, d);\
00030                                    fflush(stderr); }
00031 
00032 #endif


Last updated at Tue Dec 18 21:07:42 PST 2007. This site and project hosted by...SourceForge.net Logo
Source Perspective by Fisheye