diff options
author | jsorg71 <jsorg71> | 2006-10-24 04:05:38 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2006-10-24 04:05:38 +0000 |
commit | f386cea14aff1cc7518be53aa0ab0a7787fc017b (patch) | |
tree | 2bea1fda836297b43d91d3d03a215ad3e508c65e /xrdp/xrdp_bitmap.c | |
parent | b610beb4ac5ce8e1516ff71e0da45014211e43b4 (diff) | |
download | xrdp-proprietary-f386cea14aff1cc7518be53aa0ab0a7787fc017b.tar.gz xrdp-proprietary-f386cea14aff1cc7518be53aa0ab0a7787fc017b.zip |
make some functions static per 1579343
Diffstat (limited to 'xrdp/xrdp_bitmap.c')
-rw-r--r-- | xrdp/xrdp_bitmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xrdp/xrdp_bitmap.c b/xrdp/xrdp_bitmap.c index 56b8f7e7..a709985f 100644 --- a/xrdp/xrdp_bitmap.c +++ b/xrdp/xrdp_bitmap.c @@ -281,7 +281,7 @@ xrdp_bitmap_set_focus(struct xrdp_bitmap* self, int focused) } /*****************************************************************************/ -int APP_CC +static int APP_CC xrdp_bitmap_get_index(struct xrdp_bitmap* self, int* palette, int color) { int r; @@ -772,7 +772,7 @@ xrdp_bitmap_compare_with_crc(struct xrdp_bitmap* self, } /*****************************************************************************/ -int APP_CC +static int APP_CC xrdp_bitmap_draw_focus_box(struct xrdp_bitmap* self, struct xrdp_painter* painter, int x, int y, int cx, int cy) @@ -810,7 +810,7 @@ xrdp_bitmap_draw_focus_box(struct xrdp_bitmap* self, /*****************************************************************************/ /* x and y are in relation to self for 0, 0 is the top left of the control */ -int APP_CC +static int APP_CC xrdp_bitmap_draw_button(struct xrdp_bitmap* self, struct xrdp_painter* painter, int x, int y, int w, int h, |