home · contact · privacy
Merged Win and WinConf structs, windows.h and wincontrol.h. Also lots of refactoring...
[plomrogue] / src / client / misc.h
1 /* src/client/misc.h
2  *
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.
5  */
6
7 #ifndef MISC_H
8 #define MISC_H
9
10
11
12 /* Parses command line argument -i into client configuration. */
13 extern void obey_argv(int argc, char * argv[]);
14
15 /* Save / load (init) / unload (free/dissolve) / reload interface configuration
16  * data, world.wins.pad (initialized before opening any windows to the height of
17  * the terminal screen and a width of 1) and window chains.
18  *
19  * Note that reload_interface_conf() also calls map_center().
20  */
21 extern void save_interface_conf();
22 extern void load_interface_conf();
23 extern void unload_interface_conf();
24 extern void reload_interface_conf();
25
26 /* Move world.inventory_sel up ("dir"="u") or down (else) as far as possible. */
27 extern void nav_inventory(char dir);
28
29
30
31 #endif