author | smaxx |
Sat, 18 Sep 2010 12:35:58 +0200 | |
changeset 3876 | 3dd031a8b395 |
parent 3708 | 64e059b6f9c5 |
child 3972 | 93212a97f01a |
permissions | -rw-r--r-- |
2821 | 1 |
/* |
2 |
* Hedgewars Xfire integration |
|
3 |
* Copyright (c) 2010 Mario Liebisch <mario.liebisch AT googlemail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef XFIRE_H |
|
20 |
#define XFIRE_H |
|
21 |
||
22 |
||
2822 | 23 |
#ifdef USE_XFIRE |
2821 | 24 |
enum XFIRE_KEYS |
25 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2822
diff
changeset
|
26 |
XFIRE_STATUS = 0, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2822
diff
changeset
|
27 |
XFIRE_NICKNAME, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2822
diff
changeset
|
28 |
XFIRE_SERVER, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2822
diff
changeset
|
29 |
XFIRE_ROOM, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2822
diff
changeset
|
30 |
XFIRE_KEY_COUNT, |
2821 | 31 |
}; |
32 |
||
33 |
void xfire_init(void); |
|
34 |
void xfire_free(void); |
|
35 |
void xfire_setvalue(const XFIRE_KEYS status, const char *value); |
|
36 |
void xfire_update(void); |
|
37 |
#endif |
|
38 |
||
39 |
#endif // XFIRE_H |