Mercurial > pidgin
view libpurple/protocols/jabber/win32/utsname.h @ 29836:0bc8e250ae0d
Thumbnail formats should be chosen in the order specified by the prpl.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Sun, 25 Apr 2010 21:23:08 +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