1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#ifndef _BCOMMANDS_H
#define _BCOMMANDS_H
#include "config.h"
void bldrchatcom(Parse *the_parsed, MudObject *the_user);
void bldrloadcom(Parse *the_parsed, MudObject *the_user);
void bldrmodifycom(Parse *the_parsed, MudObject *the_user);
void bldrsavecom(Parse *the_parsed, MudObject *the_user);
void bldrsetcom(Parse *the_parsed, MudObject *the_user);
void bldrlistcom(Parse *the_parsed, MudObject *the_user);
void commitcom(Parse *the_parsed, MudObject *the_user);
void bldrnewcom(Parse *the_parsed, MudObject *the_user);
void bldrdeletecom(Parse *the_parsed, MudObject *the_user);
void bldrunloadcom(Parse *the_parsed, MudObject *the_user);
void bldrcopycom(Parse *the_parsed, MudObject *the_user);
void bldrrenamecom(Parse *the_parsed, MudObject *the_user);
void autoassociate(Parse *the_parsed, MudObject *the_user);
void bldrsocketcom(Parse *the_parsed, MudObject *the_user);
void nospectatecom(Parse *the_parsed, MudObject *the_user);
void spectatecom(Parse *the_parsed, MudObject *the_user);
#endif
|