home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / shell / h / RectSave < prev    next >
Encoding:
Text File  |  1994-04-08  |  628 b   |  25 lines

  1. #ifndef __Shell_RectSave_h
  2. #define __Shell_RectSave_h
  3.  
  4. #ifndef __Shell_h
  5. #include "Shell.Shell.h"
  6. #endif
  7.  
  8.  
  9. void Shell_InitRectSave(
  10.     char        *windowname,    /* Name of savewindow in templates file    */
  11.     icon_handle    dragsprite,
  12.     icon_handle    okbutton,
  13.     icon_handle    cancelbutton,
  14.     icon_handle    filenameicon
  15.     );
  16.     /* Call this after you have loaded your templates file, and    */
  17.     /* it will set up default Event_ handlers for your save window    */
  18.     /* which will be opened when you do a Shift-Click on any Shell_    */
  19.     /* window. This enables you to save any Shell_ rectangle from a    */
  20.     /* Shell_ window to a text-editor or a file.            */
  21.  
  22.  
  23.  
  24. #endif
  25.