1 #ifndef DSPDESC_H
2 
3 #include "plugin.h"
4 
5 typedef struct {
6   GtkWidget *window;
7 
8   gchar *title;
9   gchar *filename;
10 
11 } dspdescd;
12 
13 dspdescd *dspdescFromInst (PluginInstance *inst);
14 
15 #define DSPDESC_H
16 #endif
17 
18