0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-07 01:06:37 +02:00
construct/include/operhash.h
Jilles Tjoelker 27f616ddf5 Track who set a dline/kline/xline/resv as in ratbox3.
Like in ratbox3, there is no way to query this information
(other than bandb's tables, but they worked before this
commit).
2010-03-01 01:23:22 +01:00

15 lines
276 B
C

#ifndef INCLUDED_operhash_h
#define INCLUDED_operhash_h
struct operhash_entry
{
char *name;
int refcount;
};
void init_operhash(void);
const char *operhash_add(const char *name);
const char *operhash_find(const char *name);
void operhash_delete(const char *name);
#endif