tempaltes

This commit is contained in:
Your Name
2025-04-21 11:32:09 +12:00
parent 43a10f5c3f
commit 0eacb838ce
3 changed files with 90 additions and 6 deletions

14
src/config.hpp Normal file
View File

@ -0,0 +1,14 @@
#pragma once
#include <string>
namespace dropshell {
// Configuration functions
bool get_config_path(std::string& path);
bool load_config();
bool is_config_loaded();
bool get_user_directory(std::string& path);
void init_user_directory(const std::string& path);
} // namespace dropshell