27f616ddf5
Like in ratbox3, there is no way to query this information (other than bandb's tables, but they worked before this commit).
15 lines
276 B
C
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
|