struct.h
Posted: Thu Dec 29, 2005 7:40 pm
this is in the module =
#define IsSkoAdmin(sptr) (IsAdmin(sptr) || IsNetAdmin(sptr) || IsSAdmin(sptr) || IsCoAdmin(sptr))
and i get error that IsSkoAdmin is redefined
struct.h looks like this =
#define IsSkoAdmin(sptr) (IsAdmin(sptr) || IsNetAdmin(sptr) || IsSAdmin(sptr))
question is should the one in the module be removed or changed to match the one in struct.h ?
#define IsSkoAdmin(sptr) (IsAdmin(sptr) || IsNetAdmin(sptr) || IsSAdmin(sptr) || IsCoAdmin(sptr))
and i get error that IsSkoAdmin is redefined
struct.h looks like this =
#define IsSkoAdmin(sptr) (IsAdmin(sptr) || IsNetAdmin(sptr) || IsSAdmin(sptr))
question is should the one in the module be removed or changed to match the one in struct.h ?