TimerOverlay/inc/ipc.h

17 lines
263 B
C++

#pragma once
#include "timer.h"
namespace IPC {
void listen_timer(bool* running, Timer* timer, StopWatch* stopwatch);
void addTime(int64_t minutes);
void clearTimer();
void startStopwatch();
void pauseResumeStopwatch();
void clearStopwatch();
void stop();
}