home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / EEDRW23S.ZIP / EECREATE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-13  |  605 b   |  18 lines

  1. /*****************************************************************************
  2. *   Program to draw EE diagrams.                         *
  3. *                                         *
  4. * This module creates new objects.                         *
  5. *                                         *
  6. * Written by:  Gershon Elber            IBM PC Ver 1.0,    Oct. 1989    *
  7. *****************************************************************************/
  8.  
  9. #ifndef EECREATE_H
  10. #define EECREATE_H
  11.  
  12. void AutoPanActiveWindow(void);
  13. DrawGenericStruct *CreateNewPolylineStruct(int Width);
  14. DrawGenericStruct *CreateNewConnectionStruct(void);
  15. DrawGenericStruct *CreateNewTextStruct(void);
  16.  
  17. #endif EECREATE_H
  18.