Mercurial > pidgin
view plugins/icq/util.h @ 1529:e2f256502345
[gaim-migrate @ 1539]
no more socklen_t
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sat, 03 Mar 2001 12:56:25 +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_ */