| 167 | }; |
| 168 | |
| 169 | typedef struct FuncData { |
| 170 | std::function<void()> func; |
| 171 | jobject ref; |
| 172 | FuncData() : |
| 173 | func(nullptr), ref(nullptr) {} |
| 174 | FuncData(std::function<void()> p_func, jobject p_ref) : |
| 175 | func(p_func), ref(p_ref) {} |
| 176 | } FuncData; |
| 177 | |
| 178 | typedef struct WindowFuncData { |
| 179 | std::function<void(bool)> func; |
nothing calls this directly
no outgoing calls
no test coverage detected