QTfrontend/util/platform/xfire.h
author sheepluva
Mon, 09 Nov 2015 19:21:40 +0100
changeset 11342 aa3f886c6298
parent 11046 47a8c19ecb60
permissions -rw-r--r--
fix hedgehog on parachute facing in wrong direction if parachute opens during double-jump
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2821
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     1
/*
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 3972
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10108
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
2821
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     4
 *
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     8
 *
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    12
 * GNU General Public License for more details.
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    13
 *
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 9998
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
2821
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    17
 */
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    18
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    19
#ifndef XFIRE_H
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    20
#define XFIRE_H
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    21
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    22
2822
0533562bc3a4 Engine:
smxx
parents: 2821
diff changeset
    23
#ifdef USE_XFIRE
2821
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    24
enum XFIRE_KEYS
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    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
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    31
};
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    32
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    33
void xfire_init(void);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    34
void xfire_free(void);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    35
void xfire_setvalue(const XFIRE_KEYS status, const char *value);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    36
void xfire_update(void);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    37
#endif
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    38
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    39
#endif // XFIRE_H