project_files/frontlib/frontlib.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Oct 2017 23:03:52 +0200
changeset 12738 353cb2ce6f9c
parent 10017 de822cd3df3a
permissions -rw-r--r--
Fix AddAmmo setting ammo to 99 when trying to add infinite ammo This affected the portal mission, the crate only gave you 99 portal guns instead of infinite.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     1
/*
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     2
 * Hedgewars, a free turn based strategy game
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     3
 * Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com>
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     4
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     5
 * This program is free software; you can redistribute it and/or
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     6
 * modify it under the terms of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     7
 * as published by the Free Software Foundation; either version 2
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     8
 * of the License, or (at your option) any later version.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
     9
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    13
 * GNU General Public License for more details.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    14
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    15
 * You should have received a copy of the GNU General Public License
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    16
 * along with this program; if not, write to the Free Software
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    18
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    19
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    20
/*
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    21
 * Public header file for the hedgewars frontent networking library.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    22
 *
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    23
 * This is the only header you should need to include from frontend code.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    24
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    25
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    26
#ifndef FRONTLIB_H_
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    27
#define FRONTLIB_H_
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    28
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    29
#include "ipc/gameconn.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    30
#include "ipc/mapconn.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    31
#include "net/netconn.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    32
#include "util/logging.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    33
#include "model/schemelist.h"
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    34
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    35
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    36
 * Call this function before anything else in this library.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    37
 * Returns 0 on success, -1 on error.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    38
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    39
int flib_init();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    40
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    41
/**
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    42
 * Free resources associated with the library. Call this function once
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    43
 * the library is no longer needed. You can re-initialize the library by calling
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    44
 * flib_init again.
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    45
 */
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    46
void flib_quit();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    47
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 8223
diff changeset
    48
#endif /* FRONTLIB_H_ */