Lines Matching defs:rc
763 \param rc U_RECT156 binary contents of an WMF file
764 \param left the leftmost of rc.left and rc.right
765 \param top the topmost of rc.top and rc.bottom
766 \param right the rightmost of rc.left and rc.right
767 \param bottom the bottommost of rc.top and rc.bottom
769 void U_sanerect16(U_RECT16 rc, double *left, double *top, double *right, double *bottom){
770 if(rc.left < rc.right) { *left = rc.left; *right = rc.right; }
771 else { *left = rc.right; *right = rc.left; }
772 if(rc.top < rc.bottom){ *top = rc.top; *bottom = rc.bottom; }
773 else{ *top = rc.bottom; *bottom = rc.top; }