summaryrefslogtreecommitdiff
path: root/trunk/glagen/dll/main.cc
blob: ac744f760625fb8c261c877e0c966f6afdbcead5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <list>
#include <string>
#include "libraryloader.hh"


extern int GLG_property_pos;
list<string> Libs;

int
main(int argc,
     char **argv)
{

  for (int i = 1; i < argc; i++)
    Libs.push_back(argv[i]);

  GLG_property_pos = 0;

  LibraryLoader(Libs);
  return 0;
}