ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

static void process_ellipse ( STREAM  s,
ELLIPSE_ORDER os,
uint32  present,
BOOL  delta 
) [static]

Definition at line 727 of file orders.c.

Referenced by process_orders().

{
    if (present & 0x01)
        rdp_in_coord(s, &os->left, delta);

    if (present & 0x02)
        rdp_in_coord(s, &os->top, delta);

    if (present & 0x04)
        rdp_in_coord(s, &os->right, delta);

    if (present & 0x08)
        rdp_in_coord(s, &os->bottom, delta);

    if (present & 0x10)
        in_uint8(s, os->opcode);

    if (present & 0x20)
        in_uint8(s, os->fillmode);

    if (present & 0x40)
        rdp_in_colour(s, &os->fgcolour);

    DEBUG(("ELLIPSE(l=%d,t=%d,r=%d,b=%d,op=0x%x,fm=%d,fg=0x%x)\n", os->left, os->top,
           os->right, os->bottom, os->opcode, os->fillmode, os->fgcolour));

    ui_ellipse(ROP_MINUS_1(os->opcode), os->fillmode, os->left, os->top, os->right - os->left,
           os->bottom - os->top, NULL, 0, os->fgcolour);
}

Generated on Sun May 27 2012 04:42:12 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.