Modifications
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, &...")
- 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]);