blob: a8a33719a98dba8da4e18165c2d02f3a7982ee45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// Created by mfritzsc on 7/28/17.
//
#ifndef TMCAGLWM_CONTROLLER_HOOKS_HPP
#define TMCAGLWM_CONTROLLER_HOOKS_HPP
#include <cstdint>
namespace wm {
struct App;
struct controller_hooks {
struct App *app;
void surface_created(uint32_t surface_id);
void surface_removed(uint32_t surface_id);
};
} // namespace wm
#endif // TMCAGLWM_CONTROLLER_HOOKS_HPP
|