11 lines
288 B
C
11 lines
288 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#include "../logcat_entry.h"
|
||
|
#include "../config.h"
|
||
|
|
||
|
void exclusions_window(Config& active_config, Config& inactive_config,
|
||
|
const std::vector<LogcatEntry>& logcat_entries, std::vector<size_t>& filtered_logcat_entry_offsets,
|
||
|
bool* p_open);
|