Mercurial > pidgin
view libpurple/protocols/jabber/win32/utsname.h @ 29461:3370fc087d6c
Remove the #warning about not enought bits now that OscarCapability is matched
with a guint64 in aim_caps in family_locate.c
author | Marcus Lundblad <ml@update.uu.se> |
---|---|
date | Sun, 07 Feb 2010 21:51:17 +0000 |
parents | da022013ec2a |
children |
line wrap: on
line source
#ifndef _SYS_UTSNAME_H #define _SYS_UTSNAME_H #ifdef __cplusplus extern "C" { #endif struct utsname { char sysname[20]; char nodename[20]; char release[20]; char version[20]; char machine[20]; }; int jabber_win32_uname (struct utsname *); #define uname(utsname) jabber_win32_uname(utsname) #ifdef __cplusplus } #endif #endif