home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / developmen / x_psion / psion.progs / code / psmain.h < prev    next >
C/C++ Source or Header  |  1993-08-04  |  239b  |  11 lines

  1. /* this file contains data definitions and structure definitions for the psmain.c file */
  2. struct cmdstruct {
  3.     char * cmdname ;
  4.     int maxargs ;
  5.     int minargs ;
  6.     int (*cmdfn)() ;
  7.     char * usage ;
  8.     char * helptext ;} ;
  9.  
  10. extern char ** environ ;
  11.