Remove unnecessarily stored data

This commit is contained in:
2025-05-04 02:02:45 +03:00
parent 487da24e65
commit e86dd4781c
12 changed files with 232 additions and 193 deletions

View File

@@ -1,3 +1,11 @@
/**
* Hiload is an Elf hotreloader that patches C and C++ code live while
* developing, significantly tightening the traditional feedback loop.
*
* Currently not supported:
* - modifying modules loaded at runtime
*/
#ifndef HILOAD_H_
#define HILOAD_H_
@@ -24,7 +32,7 @@ extern "C" {
int hi_init(size_t n, const char **enabled_modules);
/**
* Frees allocated memory. Call when hiload is no longer used.
* Call when hiload is no longer needed.
*/
void hi_deinit(void);