home · contact · privacy
Make server config files more readable, their parsing more lenient.
[plomrogue] / src / server / map_object_actions.h
index 7b5283fc9cff33f4254626ca79c3b686cb9c2dab..81a3fa62e5dd3de8daf0bbc9d81b8860bc0ed84e 100644 (file)
@@ -8,10 +8,8 @@
 #ifndef MAP_OBJECT_ACTIONS_H
 #define MAP_OBJECT_ACTIONS_H
 
-#include <stdint.h> /* uint8_t, uint23_t */
-#include <stdio.h> /* FILE */
+#include <stdint.h> /* uint8_t */
 struct MapObj;
-struct EntrySkeleton;
 
 
 
@@ -26,12 +24,6 @@ struct MapObjAct
 
 
 
-/* Read-in to "entry" multi-line entry from MapObjAct config "file", using
- * pre-allocated "line", "linemax" and "context" as input for err_try_fgets().
- */
-extern void read_map_object_action(char * line, uint32_t linemax,char * context,
-                                   struct EntrySkeleton * entry, FILE * file);
-
 /* Free MapObjAct * chain starting at "moa". */
 extern void free_map_object_actions(struct MapObjAct * moa);