home · contact · privacy
Merged Win and WinConf structs, windows.h and wincontrol.h. Also lots of refactoring...
[plomrogue] / src / client / misc.h
index 01e248804029a9102be50dafebbd84774f051034..5fb3e71e3e45aebd4bfb54fbd999cf79fc097978 100644 (file)
@@ -7,8 +7,6 @@
 #ifndef MISC_H
 #define MISC_H
 
-#include <stdint.h> /* for uint16_t */
-
 
 
 /* Parses command line argument -i into client configuration. */
@@ -25,17 +23,6 @@ extern void load_interface_conf();
 extern void unload_interface_conf();
 extern void reload_interface_conf();
 
-/* The SIGWINCH handler winch_called() merely sets world.winch to 1. This info
- * is used by io_loop() to call reset_windows(), which adapts the currently
- * loaded interface configuration to the new screen size.
- */
-extern void winch_called();
-extern void reset_windows();
-
-/* Return offset into center map of "mapsize" on "position" in "framesize". */
-extern uint16_t center_offset(uint16_t position,
-                              uint16_t mapsize, uint16_t framesize);
-
 /* Move world.inventory_sel up ("dir"="u") or down (else) as far as possible. */
 extern void nav_inventory(char dir);