//* struct.txt */

//* ------------------------------------------------------------------------ */
//* POINT : _ */
struct POINT
{
   int x, y;
};

//* ------------------------------------------------------------------------ */
//* RECT : ` */
struct RECT
{
   int left, top, right, bottom;
};

//* eof */