--- a/src/events.h Fri Jan 10 16:11:49 2014 +0200 +++ b/src/events.h Fri Jan 10 21:58:42 2014 +0200 @@ -38,13 +38,13 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __EVENT_H__ -#define __EVENT_H__ +#ifndef BOTC_EVENTS_H +#define BOTC_EVENTS_H #include "str.h" struct EventDef { - str name; + string name; int number; EventDef* next; }; @@ -52,6 +52,6 @@ void ReadEvents (); void UnlinkEvents (EventDef* e); EventDef* FindEventByIdx (unsigned int idx); -EventDef* FindEventByName (str a); +EventDef* FindEventByName (string a); -#endif // __EVENT_H__ \ No newline at end of file +#endif // BOTC_EVENTS_H \ No newline at end of file