#ifndef HLE_MAIN_H #define HLE_MAIN_H #include "global_typedefs.h" #include "hidlib.h" #include "rtree.h" typedef struct hle_line_s { hle_rtree_box_t bbox; pcb_coord_t x1, y1, x2, y2, thick; } hle_line_t; typedef struct { pcb_hidlib_t hidlib; /* shall be the frist */ /* UI states */ pcb_coord_t crosshair_x, crosshair_y; /* data */ hle_rtree_t lines; } hle_design_t; extern hle_design_t hle_design; #endif