// point.h #ifndef _POINT_h #define _POINT_h #include typedef struct _Point { uint16_t x; uint16_t y; } Point; #endif