12 lines
450 B
C++
12 lines
450 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
struct ImFont; // forward declaration from imgui/imgui.h
|
|
|
|
struct Config; // forward declaration from ../config.h
|
|
struct LogcatEntry; // forward declaration from ../logcat_entry.h
|
|
|
|
void settings_window(ImFont* monospace_font, Config& __restrict active_config, Config& __restrict inactive_config,
|
|
const std::vector<LogcatEntry>& logcat_entries, std::vector<size_t>& filtered_logcat_entry_offsets,
|
|
bool* p_open);
|