diff options
author | jsorg71 <jsorg71> | 2006-07-07 04:38:33 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2006-07-07 04:38:33 +0000 |
commit | 891036edd123d97260787ad93647e1da556aa5d0 (patch) | |
tree | 5876a8d61e547f23123d0b1e05dac35d44f88949 /uirdesktop/proto.h | |
parent | 7306308be6fbfb66e9f2d78dbb64d570b1f3428f (diff) | |
download | xrdp-proprietary-891036edd123d97260787ad93647e1da556aa5d0.tar.gz xrdp-proprietary-891036edd123d97260787ad93647e1da556aa5d0.zip |
added directfb stuff
Diffstat (limited to 'uirdesktop/proto.h')
-rwxr-xr-x | uirdesktop/proto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/uirdesktop/proto.h b/uirdesktop/proto.h index 826f932f..0e16f897 100755 --- a/uirdesktop/proto.h +++ b/uirdesktop/proto.h @@ -170,8 +170,8 @@ BOOL rdpsnd_init(void); /* rdpsnd_oss.c */ BOOL wave_out_open(void); void wave_out_close(void); -BOOL wave_out_format_supported(WAVEFORMATEX * pwfx); -BOOL wave_out_set_format(WAVEFORMATEX * pwfx); +BOOL wave_out_format_supported(RD_WAVEFORMATEX * pwfx); +BOOL wave_out_set_format(RD_WAVEFORMATEX * pwfx); void wave_out_volume(uint16 left, uint16 right); void wave_out_write(STREAM s, uint16 tick, uint8 index); void wave_out_play(void); @@ -266,9 +266,9 @@ void ui_triblt(uint8 opcode, int x, int y, int cx, int cy, RD_HBITMAP src, int s BRUSH * brush, int bgcolour, int fgcolour); void ui_line(uint8 opcode, int startx, int starty, int endx, int endy, PEN * pen); void ui_rect(int x, int y, int cx, int cy, int colour); -void ui_polygon(uint8 opcode, uint8 fillmode, POINT * point, int npoints, BRUSH * brush, +void ui_polygon(uint8 opcode, uint8 fillmode, RD_POINT * point, int npoints, BRUSH * brush, int bgcolour, int fgcolour); -void ui_polyline(uint8 opcode, POINT * points, int npoints, PEN * pen); +void ui_polyline(uint8 opcode, RD_POINT * points, int npoints, PEN * pen); void ui_ellipse(uint8 opcode, uint8 fillmode, int x, int y, int cx, int cy, BRUSH * brush, int bgcolour, int fgcolour); void ui_draw_glyph(int mixmode, int x, int y, int cx, int cy, RD_HGLYPH glyph, int srcx, int srcy, |