~paulliu/ubuntu/precise/freerdp/fixext

« back to all changes in this revision

Viewing changes to libfreerdp/frdp.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-10-25 14:29:02 UTC
  • mto: (9.1.1 sid) (1.1.7)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20101025142902-j8hmshnnxhu61l4m
Tags: upstream-0.8.1
ImportĀ upstreamĀ versionĀ 0.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
void
84
84
ui_line(rdpInst * inst, uint8 opcode, int startx, int starty, int endx, int endy, RD_PEN * pen);
85
85
void
86
 
ui_rect(rdpInst * inst, int x, int y, int cx, int cy, int colour);
 
86
ui_rect(rdpInst * inst, int x, int y, int cx, int cy, int color);
87
87
void
88
88
ui_polygon(rdpInst * inst, uint8 opcode, uint8 fillmode, RD_POINT * point, int npoints,
89
 
           RD_BRUSH * brush, int bgcolour, int fgcolour);
 
89
           RD_BRUSH * brush, int bgcolor, int fgcolor);
90
90
void
91
91
ui_polyline(rdpInst * inst, uint8 opcode, RD_POINT * points, int npoints, RD_PEN * pen);
92
92
void
93
93
ui_ellipse(rdpInst * inst, uint8 opcode, uint8 fillmode, int x, int y, int cx, int cy,
94
 
           RD_BRUSH * brush, int bgcolour, int fgcolour);
 
94
           RD_BRUSH * brush, int bgcolor, int fgcolor);
95
95
void
96
 
ui_start_draw_glyphs(rdpInst * inst, int bgcolour, int fgcolour);
 
96
ui_start_draw_glyphs(rdpInst * inst, int bgcolor, int fgcolor);
97
97
void
98
98
ui_draw_glyph(rdpInst * inst, int x, int y, int cx, int cy, RD_HGLYPH glyph);
99
99
void
110
110
ui_destblt(rdpInst * inst, uint8 opcode, int x, int y, int cx, int cy);
111
111
void
112
112
ui_patblt(rdpInst * inst, uint8 opcode, int x, int y, int cx, int cy, RD_BRUSH * brush,
113
 
          int bgcolour, int fgcolour);
 
113
          int bgcolor, int fgcolor);
114
114
void
115
115
ui_screenblt(rdpInst * inst, uint8 opcode, int x, int y, int cx, int cy, int srcx, int srcy);
116
116
void
118
118
          int srcx, int srcy);
119
119
void
120
120
ui_triblt(rdpInst * inst, uint8 opcode, int x, int y, int cx, int cy, RD_HBITMAP src,
121
 
          int srcx, int srcy, RD_BRUSH * brush, int bgcolour, int fgcolour);
 
121
          int srcx, int srcy, RD_BRUSH * brush, int bgcolor, int fgcolor);
122
122
RD_HGLYPH
123
123
ui_create_glyph(rdpInst * inst, int width, int height, uint8 * data);
124
124
void
148
148
ui_paint_bitmap(rdpInst * inst, int x, int y, int cx, int cy, int width, int height, uint8 * data);
149
149
void
150
150
ui_destroy_bitmap(rdpInst * inst, RD_HBITMAP bmp);
151
 
RD_HCOLOURMAP
152
 
ui_create_colourmap(rdpInst * inst, RD_COLOURMAP * colours);
 
151
RD_HPALETTE
 
152
ui_create_colormap(rdpInst * inst, RD_PALETTE * colors);
153
153
void
154
154
ui_move_pointer(rdpInst * inst, int x, int y);
155
155
void
156
 
ui_set_colourmap(rdpInst * inst, RD_HCOLOURMAP map);
 
156
ui_set_colormap(rdpInst * inst, RD_HPALETTE map);
157
157
RD_HBITMAP
158
158
ui_create_surface(rdpInst * inst, int width, int height, RD_HBITMAP old);
159
159
void