Files
stk/include/stk.h
T
anth64 5c621c8367 Init/shutdown working
- stk_init/shutdown do what they are supposed to.
- buffer sizes moved to headers
2025-11-02 18:40:33 +01:00

23 lines
316 B
C

#ifndef STK_H
#define STK_H
#include "stk_version.h"
#include <stdlib.h>
#define MOD_DIR_BUFFER_SIZE 32
#define PATH_BUFFER_SIZE 1024
#ifdef __cplusplus
extern "C" {
#endif
int stk_init(const char *mod_dir);
int stk_shutdown(void);
size_t stk_module_count(void);
#ifdef __cplusplus
}
#endif
#endif /* STK_H */