home *** CD-ROM | disk | FTP | other *** search
/ hobbes.nmsu.edu 2008 / 2008-06-02_hobbes.nmsu.edu.zip / new / scummc-0.2.0-os2.zip / ScummC / src / cost_help.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-05-11  |  984 b   |  43 lines

  1. /* This file was generated, do not edit. */
  2. static scc_param_help_t options_param_help[] = {
  3.   {
  4.     .name = "o",
  5.     .arg = "file.cost",
  6.     .dfault = "output.cost",
  7.     .desc = "Set the output file."
  8.   },{
  9.     .name = "I",
  10.     .arg = "path",
  11.     .dfault = ".",
  12.     .desc = "Set the directory where the images are searched."
  13.   },{
  14.     .name = "akos",
  15.     .arg = NULL,
  16.     .dfault = NULL,
  17.     .desc = "Output an AKOS (for v7) instead of a COST (for v6)."
  18.   },{
  19.     .name = "header",
  20.     .arg = "file.h",
  21.     .dfault = NULL,
  22.     .desc = "Output a header file with defines for the animation names, etc."
  23.   },{
  24.     .name = "prefix",
  25.     .arg = "p",
  26.     .dfault = NULL,
  27.     .desc = "Set a prefix on all the defines in the generated header."
  28.   },{}
  29. };
  30.  
  31. static scc_param_help_t cost_param_help[] = {
  32.   {
  33.     .name = "OPTIONS",
  34.     .group = options_param_help
  35.   },{}
  36. };
  37.  
  38. static scc_help_t cost_help = {
  39.   .name = "cost",
  40.   .usage = "[OPTIONS] file.scost",
  41.   .param_help = cost_param_help
  42. };
  43.