Modifications

From MidasWiki
Revision as of 10:55, 31 July 2013 by Stefan Ritt (talk | contribs) (Created page with "* mfe_get_args was created to have access to the front-end command line parameters. Here is an example how to use it int argc; char **argv; mfe_get_args(&argc, &...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
  • mfe_get_args was created to have access to the front-end command line parameters. Here is an example how to use it
  int argc;
  char **argv;
  
  mfe_get_args(&argc, &argv);
  for (int i=0 ; i<argc ; i++)
     puts(argv[i]);