RECT Structure
Visual Studio 2005
The RECT structure defines the coordinates of the upper-left and lower-right corners of a rectangle.
typedef struct tagRECT {
LONG left;
LONG top;
LONG right;
LONG bottom;
} RECT;