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