empfile's init callback is now unused, remove
This commit is contained in:
parent
6b89127d5b
commit
a71f01585f
4 changed files with 15 additions and 20 deletions
|
@ -61,28 +61,28 @@
|
|||
/* Initializers for members flags... */
|
||||
/* Unmapped cache */
|
||||
#define UNMAPPED_CACHE(type, flags) \
|
||||
sizeof(type), (flags), NULL, 0, 0, 0, 0, -1, NULL, NULL, NULL
|
||||
sizeof(type), (flags), NULL, 0, 0, 0, 0, -1, NULL, NULL
|
||||
/*
|
||||
* Mapped cache, array with known size.
|
||||
* Members cids, fids are not set.
|
||||
*/
|
||||
#define ARRAY_CACHE(array, flags) \
|
||||
sizeof(*(array)), (flags), (char *)(array), \
|
||||
SZ((array)), 0, 0, 0, -1, NULL, NULL, NULL
|
||||
SZ((array)), 0, 0, 0, -1, NULL, NULL
|
||||
/*
|
||||
* Mapped cache, array with unknown size.
|
||||
* Members csize, cids, fids are not set.
|
||||
*/
|
||||
#define PTR_CACHE(ptr, flags) \
|
||||
sizeof(*(ptr)), (flags), (char *)(ptr), \
|
||||
0, 0, 0, 0, -1, NULL, NULL, NULL
|
||||
0, 0, 0, 0, -1, NULL, NULL
|
||||
/*
|
||||
* Array-backed table.
|
||||
* The array's last element is the sentinel.
|
||||
*/
|
||||
#define ARRAY_TABLE(array, flags) \
|
||||
sizeof(*(array)), (flags), (char *)(array), \
|
||||
SZ((array)), 0, SZ((array)) - 1, SZ((array)) - 1, -1, NULL, NULL, NULL
|
||||
SZ((array)), 0, SZ((array)) - 1, SZ((array)) - 1, -1, NULL, NULL
|
||||
|
||||
/* Common configuration table flags */
|
||||
#define EFF_CFG (EFF_PRIVATE | EFF_MEM | EFF_STATIC)
|
||||
|
@ -142,9 +142,9 @@ struct empfile empfile[] = {
|
|||
{EF_LOAN, "loan", "loan", loan_ca,
|
||||
UNMAPPED_CACHE(struct lonstr, EFF_TYPED)},
|
||||
{EF_MAP, "map", "map", NULL,
|
||||
0, 0, NULL, 0, 0, 0, 0, -1, NULL, NULL, NULL},
|
||||
0, 0, NULL, 0, 0, 0, 0, -1, NULL, NULL},
|
||||
{EF_BMAP, "bmap", "bmap", NULL,
|
||||
0, 0, NULL, 0, 0, 0, 0, -1, NULL, NULL, NULL},
|
||||
0, 0, NULL, 0, 0, 0, 0, -1, NULL, NULL},
|
||||
{EF_COMM, "commodity", "commodity", commodity_ca,
|
||||
UNMAPPED_CACHE(struct comstr, EFF_TYPED | EFF_OWNER)},
|
||||
{EF_LOST, "lost", "lostitems", lost_ca,
|
||||
|
@ -221,7 +221,7 @@ struct empfile empfile[] = {
|
|||
UNMAPPED_CACHE(struct natstr, EFF_TYPED | EFF_OWNER)},
|
||||
|
||||
/* Sentinel */
|
||||
{EF_BAD, NULL, NULL, NULL, 0, 0, NULL, 0, 0, 0, 0, -1, NULL, NULL, NULL},
|
||||
{EF_BAD, NULL, NULL, NULL, 0, 0, NULL, 0, 0, 0, 0, -1, NULL, NULL},
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue