home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0040 - 0049 / ibm0040-0049 / ibm0040.tar / ibm0040 / IMGPROC.ZIP / C11.ZIP / FRPROCES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-06  |  896 b   |  29 lines

  1. /*  
  2. Copyright 1990 by John Wiley & Sons, Inc.
  3.           All Rights Reserved.
  4. */
  5. /****************************************/
  6. /*     Image Processing Header File     */
  7. /*     Frame Processing Functions       */
  8. /*       written in Turbo C 2.0         */
  9. /*                 by                   */
  10. /*          Craig A. Lindley            */
  11. /*                                      */
  12. /*   Vers: 1.0  Last Update: 11/14/89   */
  13. /****************************************/
  14.  
  15. /* User defined image combination type */
  16. typedef enum {And,Or,Xor,Add,Sub,Mult,Div,Min,Max,Ave,Overlay} BitFunction;
  17.  
  18. /* Frame Process Function Prototypes */
  19.  
  20. void CombineImages(BYTE huge *SImage,
  21.            unsigned SCol, unsigned SRow,
  22.            unsigned SWidth, unsigned SHeight,
  23.            BYTE huge *DImage,
  24.            unsigned DCol, unsigned DRow,
  25.            enum BitFunction CombineType,
  26.            short Scale);
  27.  
  28.  
  29.