QTfrontend/xfire.h
changeset 2821 67815ee123d7
child 2822 0533562bc3a4
equal deleted inserted replaced
2820:389e8b286afe 2821:67815ee123d7
       
     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 #ifdef _WIN32
       
    23 // TODO: Move to CMAKE
       
    24 #define USE_XFIRE
       
    25 #endif
       
    26 
       
    27 enum XFIRE_KEYS
       
    28 {
       
    29 	XFIRE_STATUS = 0,
       
    30 	XFIRE_NICKNAME,
       
    31 	XFIRE_SERVER,
       
    32 	XFIRE_ROOM,
       
    33 	XFIRE_KEY_COUNT,
       
    34 };
       
    35 
       
    36 #ifdef USE_XFIRE
       
    37 void xfire_init(void);
       
    38 void xfire_free(void);
       
    39 void xfire_setvalue(const XFIRE_KEYS status, const char *value);
       
    40 void xfire_update(void);
       
    41 #else
       
    42 #define xfire_init() /*xfire_init()*/
       
    43 #define xfire_free() /*xfire_free()*/
       
    44 #define xfire_setvalue(a, b) /*xfire_setvalue(a, b)*/
       
    45 #define xfire_update() /*xfire_update()*/
       
    46 #endif
       
    47 
       
    48 #endif // XFIRE_H