Page 1 of 1

struct.h

Posted: Thu Dec 29, 2005 7:40 pm
by JessieJames
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 ?

Posted: Thu Dec 29, 2005 8:22 pm
by Syzop
Most likely you can just remove the line in the module.

It does work

Posted: Mon Feb 20, 2006 12:12 pm
by ReverendSho
Removing the line from the module does work.