home *** CD-ROM | disk | FTP | other *** search
- /****************************************/
- /* Miscellaneous Include File */
- /* for Image Processing Functions */
- /* written in Turbo C 2.0 */
- /* by */
- /* Craig A. Lindley */
- /* */
- /* Vers: 1.0 Last Update: 10/05/89 */
- /****************************************/
-
- /* Define a new BYTE type */
-
- #ifndef __BYTE
- #define __BYTE
- typedef unsigned char BYTE;
- #endif
-
- #define TRUE 1
- #define FALSE 0
-
- #define VIDEO 0x10
-
- /* Common Macros */
- #define MIN(a,b) ((a)>(b)) ? (b):(a)
- #define MAX(a,b) ((a)>(b)) ? (a):(b)
- #define SQUARE(x) (x)*(x)