mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-12-17 20:47:01 +08:00
21 lines
384 B
C++
21 lines
384 B
C++
/*
|
|
* @Author: DI JUNKUN
|
|
* @Date: 2025-11-18
|
|
* Copyright (c) 2025 by DI JUNKUN, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef _AUTOSTART_H_
|
|
#define _AUTOSTART_H_
|
|
|
|
#include <string>
|
|
|
|
namespace crossdesk {
|
|
|
|
bool EnableAutostart(const std::string& appName);
|
|
|
|
bool DisableAutostart(const std::string& appName);
|
|
|
|
bool IsAutostartEnabled(const std::string& appName);
|
|
|
|
} // namespace crossdesk
|
|
#endif |