home · contact · privacy
Client: Split off parts of misc.h into interface_conf.h.
[plomrogue] / src / client / misc.h
index 5a745866c7ef8f2c4144feb76dbb0bdf16842013..9733d391ccbc0b9996d067b84a4938795ba11d53 100644 (file)
 
 
 
-/* Parses command line argument -i into client configuration. */
-extern void obey_argv(int argc, char * argv[]);
-
-/* Save / load (init) / unload (free/dissolve) / reload interface configuration
- * data, world.wins.pad (initialized before opening any windows to the height of
- * the terminal screen and a width of 1) and window chains.
- *
- * Note that reload_interface_conf() also calls map_center() and re-sets
- * world.winDB.v_screen_offset to zero.
- */
-extern void save_interface_conf();
-extern void load_interface_conf();
-extern void unload_interface_conf();
-extern void reload_interface_conf();
-
 /* Move world.inventory_sel up ("dir"="u") or down (else) as far as possible. */
 extern void nav_inventory(char dir);