3 * Miscellaneous routines that have not yet found a proper parent module. Having
4 * LOTS of stuff in here is a sure sign that better modularization is in order.
10 #include <stdint.h> /* for uint16_t */
14 /* Save / load (init) / unload (free/dissolve) / reload interface configuration
15 * data, world.wmeta.pad (initialized before opening any windows to the height
16 * of the terminal screen and a width of 1) and window chains.
18 extern void save_interface_conf();
19 extern void load_interface_conf();
20 extern void unload_interface_conf();
21 extern void reload_interface_conf();
23 /* Return offset into center map of "mapsize" on "position" in "framesize". */
24 extern uint16_t center_offset(uint16_t position,
25 uint16_t mapsize, uint16_t framesize);
27 /* Move world.inventory_sel up ("dir"="u") or down (else) as far as possible. */
28 extern void nav_inventory(char dir);