aboutsummaryrefslogtreecommitdiff
path: root/lib/tctl/tctl.h
blob: d106818f18af995b7ee4fefc2c951ea4d31c5719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TCTL_H
#define TCTL_H

typedef struct {
	unsigned short int height;
	unsigned short int width;
	unsigned short int ws_xpixel;
	unsigned short int ws_ypixel;
} window_size_t;

window_size_t tctl_get_window_size();
void          tctl_set_window_size(window_size_t size);

#endif