f9c6bc221e
- Extracted webserver (13.5MB) from safeline-mgt:9.3.9 - Extracted tcontrollerd (12MB) from safeline-tengine:9.3.9 - Extracted nginx from safeline-tengine:9.3.9 - Extracted libfusion.so (127MB) FVM engine from safeline-fvm:9.3.9 - Added musl libc for Alpine-based containers - Created proper FVM C headers matching libfusion.so API - Added install_full.sh for complete deployment
14 lines
209 B
C
14 lines
209 B
C
#ifndef FVM_PLOT_H
|
|
#define FVM_PLOT_H
|
|
|
|
#include <fvm-c/update.h>
|
|
|
|
typedef struct {
|
|
fvm_buf_t buf;
|
|
} fvm_plot_t;
|
|
|
|
fvm_plot_t *fvm_plot(fvm_framework_t *fw);
|
|
void fvm_plot_destroy(fvm_plot_t *plot);
|
|
|
|
#endif
|