home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine 1996 / ARCHIVE_96.iso / discs / mag_discs / volume_9 / issue_08 / toolbox / Step5 / !FormText / h / textfile < prev   
Text File  |  1995-12-11  |  438b  |  23 lines

  1. /* !FormText.textfile.h */
  2. /* Processes text file */
  3.  
  4. #ifndef __textfile_h
  5. #define __textfile_h
  6.  
  7. #ifndef __toolbox_h
  8. #include "toolbox.h"
  9. #endif
  10.  
  11. #define FileType_Text 0xfff
  12.  
  13. /* Sets up textfile ready to be triggered by events */
  14. void textfile_initialise(void);
  15.  
  16. /* Clears any loaded text file */
  17. void textfile_clear(void);
  18.  
  19. /* Does all stages of processing and sets up SaveAs pointer */
  20. int textfile_process(ObjectId saveas_id);
  21.  
  22. #endif
  23.