home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / EEDRW23S.ZIP / EELOAD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-21  |  897 b   |  27 lines

  1. /*****************************************************************************
  2. *   Module to load/save EEDraw files.                         *
  3. *                                         *
  4. * Written by:  Gershon Elber            IBM PC Ver 1.0,    Oct. 1989    *
  5. *****************************************************************************/
  6.  
  7. #ifndef EELOAD_H
  8. #define EELOAD_H
  9.  
  10. typedef enum {
  11.     FILE_SAVE_AS,
  12.     FILE_SAVE_OLD,
  13.     FILE_SAVE_NEW
  14. } FileSaveType;
  15.  
  16. BooleanType ClearDrawList(EEWindowStruct *Window);
  17. void CloseEEDFile(EEWindowStruct *Window);
  18. BooleanType LoadEEFile(EEWindowStruct *Window);
  19. BooleanType SaveEEFile(FileSaveType FileSave, EEWindowStruct *Window);
  20. void SaveNetList(EEWindowStruct *Window);
  21. BooleanType LinesIntersect(int l1x1, int l1y1, int l1x2, int l1y2,
  22.                int l2x1, int l2y1, int l2x2, int l2y2,
  23.                BooleanType l1Bus, BooleanType l2Bus,
  24.                DrawGenericStruct *Phead);
  25.  
  26. #endif EELOAD_H
  27.