blob: a226c110f5e8de5d021a1f5a5f6061b6301dbbaf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef WINDOW_H
#define WINDOW_H
#include <stdint.h>
#include <winact.h>
#include "task.h"
struct window;
void init_win();
struct window *new_window(uint16_t width, uint16_t height, const void *pixel_buffer);
void del_window(struct window *w);
void resize_window(struct window *w, uint16_t width, uint16_t height, const void *pixel_buffer);
void reassign_pixel_buffer(struct window *w, const void *pixel_buffer);
void push_window_paint(const struct window *w);
struct window_action next_window_action(struct window *w);
void wait_window_action();
void on_action(struct window_action packet);
void delete_any_windows_from(struct task_state *tstate);
#endif
|