File: unitselect_common.h

package info (click to toggle)
freeciv 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 211,412 kB
  • sloc: ansic: 442,905; cpp: 29,161; sh: 15,128; makefile: 7,886; python: 1,933; xml: 945
file content (46 lines) | stat: -rw-r--r-- 1,548 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*****************************************************************************
 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
*****************************************************************************/
#ifndef FC__UNITSELECT_COMMON_H
#define FC__UNITSELECT_COMMON_H

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

struct unit_type;
struct unit_list;
struct tile;

struct usdata {
  struct unit_type *utype;
  struct unit_list *units[SELLOC_COUNT][ACTIVITY_LAST];
};

#define SPECHASH_TAG usdata
#define SPECHASH_INT_KEY_TYPE
#define SPECHASH_IDATA_TYPE struct usdata *
#include "spechash.h"

#define usdata_hash_data_iterate(phash, data)                                \
  TYPED_HASH_DATA_ITERATE(struct usdata *, phash, data)
#define usdata_hash_data_iterate_end                                         \
  HASH_DATA_ITERATE_END

struct usdata_hash *usdlg_data_new(const struct tile *ptile);
void usdlg_data_destroy(struct usdata_hash *ushash);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* FC__UNITSELECT_COMMON_H */