diff options
| author | dacctal <dacctal@symlinx.net> | 2026-06-03 15:01:21 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-06-03 15:01:21 +0000 |
| commit | 198cde49db902ee97775c74c5cfd971b07cb0c78 (patch) | |
| tree | 95fbdf28cb9a0a02f18bd944ccfd7e3567545876 /include | |
| parent | 62480d6cc957c9ad36dc2ca6fc5802d79b6e8590 (diff) | |
install and remove commands are much more customizable :)
Diffstat (limited to 'include')
| -rw-r--r-- | include/lua_state.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/lua_state.h b/include/lua_state.h index 26a14f8..b882cd7 100644 --- a/include/lua_state.h +++ b/include/lua_state.h @@ -17,11 +17,17 @@ void init_lua_state(void); void free_lua_state(void); lua_State* get_lua_state(void); +void cache_repos(void); +void cache_build_systems(void); void cache_install_directories(void); bool repo_build(const char *repository); +bool repo_install(const char *repository); +bool repo_uninstall(const char *repository); bool bldit(const char *target); +bool bldit_install(const char *target); +bool bldit_uninstall(const char *target); bool config_build(const char *path); -void cache_repos(void); -void cache_build_systems(void); +bool config_install(const char *path); +bool config_uninstall(const char *path); #endif
\ No newline at end of file |
