view libpurple/protocols/jabber/win32/utsname.h @ 18272:54ad47857b7b

this fixes a bug where: Resource A comes online, as available Resource B comes online, as available Resource A goes away Resource B goes away, with a lower priority than A Buddy is still shown as available
author Nathan Walp <nwalp@pidgin.im>
date Mon, 25 Jun 2007 02:56:32 +0000
parents 5fe8042783c1
children da022013ec2a
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 uname (struct utsname *);

#ifdef __cplusplus
}
#endif

#endif