X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmisc.h;h=5a745866c7ef8f2c4144feb76dbb0bdf16842013;hb=83a319d17dcafef7c843c41acad8fae9ecf9d784;hp=5fb3e71e3e45aebd4bfb54fbd999cf79fc097978;hpb=024b404c0db59dc6651b1c8f3d379c2797654fdf;p=plomrogue diff --git a/src/client/misc.h b/src/client/misc.h index 5fb3e71..5a74586 100644 --- a/src/client/misc.h +++ b/src/client/misc.h @@ -7,6 +7,9 @@ #ifndef MISC_H #define MISC_H +#include /* size_t */ +#include /* uint32_t */ + /* Parses command line argument -i into client configuration. */ @@ -16,7 +19,8 @@ extern void obey_argv(int argc, char * argv[]); * 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(). + * 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(); @@ -26,6 +30,12 @@ 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); +/* Append to array pointed to by "ptr_old_array" of "old_n" elements of + * "region_size" "new region". + */ +extern void array_append(uint32_t old_n, size_t region_size, void * new_region, + void ** ptr_old_array); + #endif