1
0
mirror of https://github.com/CPunch/Laika.git synced 2024-09-20 02:28:19 +00:00
Laika/bot/include/persist.h
CPunch 412418ec0a Added crontab persistence, disabled by default with LAIKA_NOINSTALL
- undefine LAIKA_NOINSTALL in persist.h to enable persistence
- windows persistence is still unimplemented
2022-04-07 18:11:58 -05:00

30 lines
659 B
C

#ifndef LAIKA_PERSIST_H
#define LAIKA_PERSIST_H
/* undefine to enable persistence */
#define LAIKA_NOINSTALL
#include <stdbool.h>
/* check if laika is already running */
bool laikaB_checkRunning(void);
/* check if laika is already installed on current machine */
bool laikaB_checkPersist(void);
/* check if laika is running as super-user */
bool laikaB_checkRoot(void);
/* mark that laika is currently running */
void laikaB_markRunning(void);
/* unmark that laika is currently running */
void laikaB_unmarkRunning(void);
/* try to gain persistance on machine */
void laikaB_tryPersist(void);
/* try to gain root */
void laikaB_tryRoot(void);
#endif