zmidimap/include/system.hpp
zawz 1c8c3ac9d2 v1.3 : added auto file reloading
+ Files now auto reload when changes are detected
+ Added --no-reload option to disable auto reloading
* Internal cleanups
2019-09-26 11:42:11 +02:00

20 lines
409 B
C++

#ifndef SYSTEM_HPP
#define SYSTEM_HPP
#define ANNOUNCE_COMMAND "aseqdump -p System:1"
#define LIST_COMMAND "aseqdump -l | tail -n +2 | cut -c10-42 | tr -s ' '"
#define LIST_EXTENDED_COMMAND "aseqdump -l | tail -n +2 | cut -c-42"
#include <string>
extern int announce_thread_pid;
void kill_all();
void device_check();
void announce_loop();
void filetime_loop(std::string filepath);
#endif //SYSTEM_HPP