2a9 #ifndef DCW_H #define DCW_H #include "mapview.h" #include "e00.h" #define PONET 0 #define PPPOLY 1 #define PPPOINT 2 #define RRLINE 3 #define RDLINE 4 #define UTLINE 5 #define DNNET 6 #define DNPOINT 7 #define DSPOINT 8 #define HYNET 9 #define HYPOINT 10 #define HSLINE 11 #define HSPOINT 12 #define LCPOLY 13 #define LCPOINT 14 #define OFPOINT 15 #define OFLINE 16 #define PHLINE 17 #define AEPOINT 18 #define CLPOLY 19 #define CLPOINT 20 #define CLLINE 21 #define TSLINE 22 #define TSPOINT 23 #define VGPOLY 24 void drawdcw(E00MAP *map); E00MAP *loaddcw(char *fname, unsigned long color, unsigned long fillcolor, int width); #endif . 0