logmeow/windows/settings.h

11 lines
378 B
C
Raw Normal View History

2023-01-23 08:44:16 +00:00
#pragma once
#include <vector>
struct ImFont; // forward declaration from imgui/imgui.h
2023-02-22 09:33:36 +00:00
struct Config; // forward declaration from ../config.h
2023-03-29 10:08:31 +00:00
class LogcatEntries; // forward declaration from ../logcat_entry.h
2023-01-23 08:44:16 +00:00
void settings_window(ImFont* monospace_font, Config& __restrict active_config, Config& __restrict inactive_config,
2023-03-29 10:08:31 +00:00
LogcatEntries& logcat_entries, bool* p_open);