/*
PDT (./libproaimm.a/PDT.mm) prototype_application_interface, proai
  dog, d: name = mutt
PDTEND
*/

/*
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 pdt = {
  "PDT Version 2.0 for U*X",
  "./libproaimm.a/PDT.mm",
  "optional_file_list"
};

evap_Parameter_Value pvt[] = {

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

  {"dog", "d",
   FALSE, TRUE, P_TYPE_NAME,
   NULL,
   "mutt",
   ": name = mutt",
   0,
   NULL,
   NULL},

  {NULL}  /* end of parameters */

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

#define P_dog 1
#define P_NUMBER_OF_PARAMETERS 2
