/*
PDT (./libevapmm.a/samc.mm) sample_command
  id, i: string = "sample_command"
PDTEND optional_file_list
*/

/*
Define P_EVAP_EXTERN in separately compiled modules!
This will declare pvt as an external so you can reference
parameter values.  No storage is allocated in this case.
*/
#ifndef P_EVAP_EXTERN

struct pdt_header samc_pkg_pdt = {
  "PDT Version 2.0 for U*X",
  "./libevapmm.a/samc.mm",
  "optional_file_list"
};

evap_Parameter_Value samc_pkg_pvt[] = {

  {"help", "?",
   FALSE, TRUE, P_TYPE_SWITCH,
   NULL,
   "FALSE",
   ", usage_help, full_help: Display Command Information",
   0,
   NULL,
   NULL},

  {"id", "i",
   FALSE, TRUE, P_TYPE_STRING,
   NULL,
   "sample_command",
   ": string = \"sample_command\"",
   0,
   NULL,
   NULL},

  {NULL}  /* end of parameters */

};
#else
extern evap_Parameter_Value samc_pkg_pvt[];
#endif

#define samc_pkg_P_id 1
#define samc_pkg_P_NUMBER_OF_PARAMETERS 2
