mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-19 01:51:44 +01:00
Actually ue typedefs for obj_data, char_data and descriptor_data.
Some linting in a couple of files. Massive commit...
This commit is contained in:
24
src/genobj.h
24
src/genobj.h
@@ -12,20 +12,20 @@
|
||||
#ifndef _GENOBJ_H_
|
||||
#define _GENOBJ_H_
|
||||
|
||||
void free_object_strings_proto(struct obj_data *obj);
|
||||
void free_object_strings(struct obj_data *obj);
|
||||
int copy_object(struct obj_data *to, struct obj_data *from);
|
||||
int copy_object_preserve(struct obj_data *to, struct obj_data *from);
|
||||
void free_object_strings_proto(obj_data *obj);
|
||||
void free_object_strings(obj_data *obj);
|
||||
int copy_object(obj_data *to, obj_data *from);
|
||||
int copy_object_preserve(obj_data *to, obj_data *from);
|
||||
int save_objects(zone_rnum vznum);
|
||||
obj_rnum insert_object(struct obj_data *obj, obj_vnum ovnum);
|
||||
obj_rnum insert_object(obj_data *obj, obj_vnum ovnum);
|
||||
obj_rnum adjust_objects(obj_rnum refpt);
|
||||
obj_rnum index_object(struct obj_data *obj, obj_vnum ovnum, obj_rnum ornum);
|
||||
obj_rnum add_object(struct obj_data *, obj_vnum ovnum);
|
||||
int copy_object_main(struct obj_data *to, struct obj_data *from, int free_object);
|
||||
obj_rnum index_object(obj_data *obj, obj_vnum ovnum, obj_rnum ornum);
|
||||
obj_rnum add_object(obj_data *, obj_vnum ovnum);
|
||||
int copy_object_main(obj_data *to, obj_data *from, int free_object);
|
||||
int delete_object(obj_rnum);
|
||||
bool oset_alias(struct obj_data *obj, char * argument);
|
||||
bool oset_apply(struct obj_data *obj, char * argument);
|
||||
bool oset_short_description(struct obj_data *obj, char * argument);
|
||||
bool oset_long_description(struct obj_data *obj, char * argument);
|
||||
bool oset_alias(obj_data *obj, char * argument);
|
||||
bool oset_apply(obj_data *obj, char * argument);
|
||||
bool oset_short_description(obj_data *obj, char * argument);
|
||||
bool oset_long_description(obj_data *obj, char * argument);
|
||||
|
||||
#endif /* _GENOBJ_H_ */
|
||||
|
||||
Reference in New Issue
Block a user