qbreak/app/autostart.h
2022-04-17 15:37:04 +03:00

23 lines
369 B
C++

#ifndef AUTOSTART_H
#define AUTOSTART_H
#include <string>
class autostart
{
public:
static void enable(const std::string& path_to_me);
static void disable();
static bool is_enabled();
};
class appmenu
{
public:
static void install(const std::string& path_to_me);
static void uninstall();
static bool is_installed();
};
#endif // AUTOSTART_H