server/src/attributes/racename.h

19 lines
357 B
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
#ifndef H_ATTRIBUTE_RACENAME_H
#define H_ATTRIBUTE_RACENAME_H
#ifdef __cplusplus
extern "C" {
#endif
struct attrib_type;
struct attrib;
2010-08-08 10:06:34 +02:00
extern void set_racename(struct attrib **palist, const char *name);
extern const char *get_racename(struct attrib *alist);
2010-08-08 10:06:34 +02:00
extern struct attrib_type at_racename;
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif