mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 10:35:26 +00:00
16 lines
260 B
C++
16 lines
260 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <BlockingQueue.h>
|
|
|
|
enum logcat_event {
|
|
HIDE_EVENT,
|
|
LOG_EVENT
|
|
};
|
|
|
|
extern bool logcat_started;
|
|
|
|
BlockingQueue<std::string> &start_logging(logcat_event event);
|
|
void stop_logging(logcat_event event);
|
|
bool start_logcat();
|