view libpurple/protocols/jabber/win32/utsname.h @ 31526:b2f6fec7b98e

jabber: Correctly handle the unsetting case for a contact's vCard avatar. Patch from Matthew (mentor) W.S. Bell. Closes #13370 committer: Paul Aurich <paul@darkrain42.org>
author matthew@bells23.org.uk
date Tue, 03 May 2011 05:02:00 +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