01: /*
02:  *  main-win.h
03:  *  dde
04:  *
05:  *  Created by ashley on 01/12/2009.
06:  *  Copyright 2009 __MyCompanyName__. All rights reserved.
07:  *
08:  */
09: 
10: #include <gtk/gtk.h>
11: #include "solv95.h"
12: #include "plot-win.h"
13: 
14: struct _DDEMainWindow
15: {
16:         GtkWidget *window;
17:         GtkWidget **entries;
18:         GtkWidget *progress_bar;
19:         
20:         DDEPlotWin *plotwin;
21:         
22:         usercontrol *out;
23: //      GArray *buffer;
24:         
25: };
26: typedef struct _DDEMainWindow DDEMainWindow;
27: 
28: DDEMainWindow *makeMainWindow();