home *** CD-ROM | disk | FTP | other *** search
-
- #define JULIA 0x01
- #define FAST 0x02
-
- /* what FAST mode is on, the stream of data includes pixel start
- * information. This will increase net traffic by about 100%,
- * so do not use it lightly.
- * However, server can decode the pictures much faster when
- * FAST flag is set.
- */
- #define USE_INTEGER_MATH
-
- #define LIMIT_J16 (8e-3)
- #define LIMIT_J32 (1.6e-8)
-
- #define LIMIT_M16 (2e-3)
- #define LIMIT_M32 (4e-9)
-
- #define BIT16 13
- #define BIT32 29
-
- #define NODIR -1
- #define UP 0
- #define RIGHT 1
- #define DOWN 2
- #define LEFT 3
-
- #define LASTPIX (0xffff)
-
- #define MAXHOST 16
-
- int iterate();
- void initialize();
- void deinit();
- int first_point();
- void next_point();
-
-