home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 125 / af125a.adf / Altabber.lzx / Altabber / src / NewReadArgs.h < prev   
C/C++ Source or Header  |  2002-06-06  |  718b  |  26 lines

  1. /*
  2. **    $VER: newreadargs.h 37.1 (18.6.97)
  3. **    
  4. **
  5. **    NewReadArgs structure and protos
  6. **
  7. **    (C) Copyright 1997 Stephan Rupprecht
  8. **        All Rights Reserved
  9. */
  10.  
  11. struct NewRDArgs {
  12.     /* you MUST initialize these fields 
  13.        before calling NewReadArgs() !!! */
  14.        STRPTR    Template;    /* ReadArgs template */
  15.     STRPTR    ExtHelp;    /* ExtHelp string or NULL, shell ONLY */
  16.     STRPTR    Window;     /* WB window descriptor, eg. "CON:////Test" */
  17.        LONG   *Parameters;    /* array to store parsed parameters */
  18.     LONG    FileParameter;    /* -1 means none, 0 means all */
  19.     LONG     PrgToolTypesOnly;
  20.     /* private !!! */
  21.     ULONG    reserved[6];    /* keep off */
  22. };
  23.  
  24. void NewFreeArgs(struct NewRDArgs *);
  25. LONG NewReadArgs(struct WBStartup *, struct NewRDArgs *);
  26.