blob: af8f52498ad9d417a2cdfd5c38adc7aeaa077293 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef LAYOUT_H_
#define LAYOUT_H_
#include "state.h"
void calculate_layout(client_state* state, rect_t* prompt, rect_t* input, rect_t* options, bool recalc_options, bool recalc_pages);
#endif
|