- Separate work in a main program and two libraries. This is experimental, and

ideally it should be a target to work towards decoupling
- Still more experimental, added support for visibility exports from DSOs. Need
testing from someone with GCC 4.0


git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@206 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-01-26 18:31:23 +00:00
parent 1515b2065f
commit 26f88aa4cf
11 changed files with 368 additions and 17 deletions

View file

@ -21,7 +21,9 @@
#include "config.h"
#include "gettext.h"
#include "main.hh"
#include "parseopts.hh"
#include "gtkgui/startgui.hh"
#include <algorithm>
#include <functional>
@ -63,5 +65,7 @@ main(int argc, char* argv[])
for_each(a_ptr, a_ptr+a_count, create_fnames_vect(filenames));
}
start_gui(argc, argv);
return 0;
}