QTfrontend/xfire.h
author koda
Sat, 31 Jul 2010 10:53:54 +0200
branchexperimental3D
changeset 3690 c247dee9e1c0
parent 2948 3f21a9dc93d0
child 3694 3e9c0634065c
permissions -rw-r--r--
applying smaxx patch where it should be
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2821
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     1
/*
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     2
 * Hedgewars Xfire integration
67815ee123d7 Frontend:
smxx
parents:
diff changeset
     3
 * Copyright (c) 2010 Mario Liebisch <mario.liebisch AT googlemail.com>
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
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
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
#ifdef _WIN32
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    23
// TODO: Move to CMAKE
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    24
#define USE_XFIRE
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    25
#endif
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    26
2822
0533562bc3a4 Engine:
smxx
parents: 2821
diff changeset
    27
#ifdef USE_XFIRE
2821
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    28
enum XFIRE_KEYS
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    29
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2822
diff changeset
    30
    XFIRE_STATUS = 0,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2822
diff changeset
    31
    XFIRE_NICKNAME,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2822
diff changeset
    32
    XFIRE_SERVER,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2822
diff changeset
    33
    XFIRE_ROOM,
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2822
diff changeset
    34
    XFIRE_KEY_COUNT,
2821
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    35
};
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    36
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    37
void xfire_init(void);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    38
void xfire_free(void);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    39
void xfire_setvalue(const XFIRE_KEYS status, const char *value);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    40
void xfire_update(void);
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    41
#endif
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    42
67815ee123d7 Frontend:
smxx
parents:
diff changeset
    43
#endif // XFIRE_H