mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
10 lines
214 B
C
10 lines
214 B
C
#ifndef SLIDING_PLOT_H
|
|
#define SLIDING_PLOT_H
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
extern GtkWidget* sliding_plot_new(guint nb_plot);
|
|
extern void sliding_plot_update(GtkWidget* plot, float* values);
|
|
|
|
#endif /* SLIDING_PLOT_H */
|