aboutsummaryrefslogtreecommitdiffstats
path: root/src/controller_hooks.hpp
blob: 170c2f0502fb92c46b0b6ba6a6f9ffbe73ab9fbe (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