Changeset 9ebadf7 in libguac-client-rdp


Ignore:
Timestamp:
04/03/12 20:58:31 (14 months ago)
Author:
zhangmaike
Branches:
master, debian, rpm, unstable
Children:
291c3b3
Parents:
e8a54cd
git-author:
Michael Jumper <zhangmaike@…> (04/03/12 20:58:31)
git-committer:
Michael Jumper <zhangmaike@…> (04/03/12 20:58:31)
Message:

Implement EndPaint.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • include/rdp_gdi.h

    raf07170 r9ebadf7  
    5252void guac_rdp_gdi_palette_update(rdpContext* context, PALETTE_UPDATE* palette); 
    5353void guac_rdp_gdi_set_bounds(rdpContext* context, rdpBounds* bounds); 
     54void guac_rdp_gdi_end_paint(rdpContext* context); 
    5455 
    5556#endif 
  • src/client.c

    r6429aaf r9ebadf7  
    146146 
    147147    /* Set up GDI */ 
     148    instance->update->EndPaint = guac_rdp_gdi_end_paint; 
    148149    instance->update->Palette = guac_rdp_gdi_palette_update; 
    149150    instance->update->SetBounds = guac_rdp_gdi_set_bounds; 
  • src/rdp_gdi.c

    r4c1783c r9ebadf7  
    265265} 
    266266 
     267void guac_rdp_gdi_end_paint(rdpContext* context) { 
     268    guac_client* client = ((rdp_freerdp_context*) context)->client; 
     269    guac_socket_flush(client->socket); 
     270} 
     271 
Note: See TracChangeset for help on using the changeset viewer.