forked from github/server
de-clutter header file.
This commit is contained in:
parent
967e70a4e1
commit
0ff9f1601c
|
@ -32,8 +32,6 @@ extern "C" {
|
||||||
* wichtig
|
* wichtig
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct xml_tag;
|
|
||||||
|
|
||||||
typedef struct requirement {
|
typedef struct requirement {
|
||||||
const struct resource_type *rtype;
|
const struct resource_type *rtype;
|
||||||
int number;
|
int number;
|
||||||
|
@ -63,8 +61,8 @@ extern "C" {
|
||||||
} construction;
|
} construction;
|
||||||
|
|
||||||
void free_construction(struct construction *cons);
|
void free_construction(struct construction *cons);
|
||||||
extern int destroy_cmd(struct unit *u, struct order *ord);
|
int destroy_cmd(struct unit *u, struct order *ord);
|
||||||
extern int leave_cmd(struct unit *u, struct order *ord);
|
int leave_cmd(struct unit *u, struct order *ord);
|
||||||
|
|
||||||
void build_road(struct unit *u, int size, direction_t d);
|
void build_road(struct unit *u, int size, direction_t d);
|
||||||
void create_ship(struct unit *u, const struct ship_type *newtype,
|
void create_ship(struct unit *u, const struct ship_type *newtype,
|
||||||
|
@ -74,16 +72,15 @@ extern "C" {
|
||||||
struct building *getbuilding(const struct region *r);
|
struct building *getbuilding(const struct region *r);
|
||||||
struct ship *getship(const struct region *r);
|
struct ship *getship(const struct region *r);
|
||||||
|
|
||||||
void reportevent(struct region *r, char *s);
|
|
||||||
|
|
||||||
void shash(struct ship *sh);
|
void shash(struct ship *sh);
|
||||||
void sunhash(struct ship *sh);
|
void sunhash(struct ship *sh);
|
||||||
extern int roqf_factor(void);
|
int roqf_factor(void);
|
||||||
|
|
||||||
int build(struct unit *u, const construction * ctype, int completed, int want);
|
int build(struct unit *u, const construction * ctype, int completed, int want);
|
||||||
extern int maxbuild(const struct unit *u, const construction * cons);
|
int maxbuild(const struct unit *u, const construction * cons);
|
||||||
extern struct message *msg_materials_required(struct unit *u,
|
struct message *msg_materials_required(struct unit *u, struct order *ord,
|
||||||
struct order *ord, const struct construction *ctype, int multi);
|
const struct construction *ctype, int multi);
|
||||||
|
|
||||||
/** error messages that build may return: */
|
/** error messages that build may return: */
|
||||||
#define ELOWSKILL -1
|
#define ELOWSKILL -1
|
||||||
#define ENEEDSKILL -2
|
#define ENEEDSKILL -2
|
||||||
|
|
Loading…
Reference in New Issue