annotate src/protocols/jabber/win32/utsname.h @ 6138:1894de5f7fbd
[gaim-migrate @ 6612]
make the docklet do the right thing when the accounts menu item is clicked
thanks chickenboycole
committer: Tailor Script <tailor@pidgin.im>
| author |
Nathan Walp <nwalp@pidgin.im> |
| date |
Tue, 15 Jul 2003 14:20:13 +0000 |
| parents |
9682c0e022c6 |
| children |
|
| rev |
line source |
|
3630
|
1 #ifndef _SYS_UTSNAME_H
|
|
|
2 #define _SYS_UTSNAME_H
|
|
|
3
|
|
|
4 #ifdef __cplusplus
|
|
|
5 extern "C" {
|
|
|
6 #endif
|
|
|
7
|
|
|
8 struct utsname
|
|
|
9 {
|
|
|
10 char sysname[20];
|
|
|
11 char nodename[20];
|
|
|
12 char release[20];
|
|
|
13 char version[20];
|
|
|
14 char machine[20];
|
|
|
15 };
|
|
|
16
|
|
|
17 int uname (struct utsname *);
|
|
|
18
|
|
|
19 #ifdef __cplusplus
|
|
|
20 }
|
|
|
21 #endif
|
|
|
22
|
|
|
23 #endif
|