Mercurial > pidgin
view plugins/icq/util.h @ 1792:de88617f542c
[gaim-migrate @ 1802]
if (gtk_main_level())
gtk_main_quit();
exit(0);
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Tue, 01 May 2001 21:47:24 +0000 |
parents | 201ec77f3a60 |
children | 8ed70631ed15 |
line wrap: on
line source
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ #ifndef _UTIL_H_ #define _UTIL_H_ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <sys/types.h> #ifdef _WIN32 #include <winsock.h> #else #include <netinet/in.h> #endif #include "icqtypes.h" #include "icq.h" #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE !FALSE #endif void hex_dump(char *data, long size); WORD Chars_2_Word(unsigned char *buf); DWORD Chars_2_DW(unsigned char *buf); void DW_2_Chars(unsigned char *buf, DWORD num); void Word_2_Chars(unsigned char *buf, WORD num); const char *icq_ConvertStatus2Str(unsigned long status); #endif /* _UTIL_H_ */