logmeow/event_loop.h

9 lines
282 B
C
Raw Permalink Normal View History

#pragma once
2023-02-22 09:33:36 +00:00
struct ImFont; // forward declaration from imgui/imgui.h
2023-01-06 16:27:39 +00:00
2023-02-22 09:33:36 +00:00
struct Config; // forward declaration from config.h
class LogcatThread; // forward declaration from logcat_thread.h
2023-02-04 07:31:50 +00:00
void event_loop(ImFont* monospace_font, Config& active_config, LogcatThread& logcat_thread);