Lost on this part of the code.
const struct editor_cmd_type editor_table[] =
{
/* { command function }, */
{ "area", do_aedit },
{ "room", do_redit },
{ "object", do_oedit },
{ "mobile", do_medit },
{ "mpcode", do_mpedit },
{ "hedit", do_hedit },
{ NULL, 0, }
};
Errors I am getting:
olc.c:652: error: âdo_aeditâ was not declared in this scope olc.c:653: error: âdo_reditâ was not declared in this scope olc.c:654: error: âdo_oeditâ was not declared in this scope olc.c:655: error: âdo_meditâ was not declared in this scope olc.c:656: error: âdo_mpeditâ was not declared in this scope olc.c:657: error: âdo_heditâ was not declared in this scope make: *** [olc.o] Error 1
There is already void do_aedit
, void do_redit
and such in the code...what am I missing?