12 lines
206 B
C
Raw Normal View History

2026-06-23 09:54:30 +08:00
#pragma once
enum MonitorStatus
{
MONITOR_STATUS_REQUESTED,
MONITOR_STATUS_WAITING_FOR_REQUEST,
MONITOR_STATUS_NOT_RUNNING,
};
void monitor_ensure_running();
MonitorStatus GetMonitorStatus();