summaryrefslogtreecommitdiffstats
path: root/xrdp/xrdp_wm.c
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2006-10-24 04:05:38 +0000
committerjsorg71 <jsorg71>2006-10-24 04:05:38 +0000
commitf386cea14aff1cc7518be53aa0ab0a7787fc017b (patch)
tree2bea1fda836297b43d91d3d03a215ad3e508c65e /xrdp/xrdp_wm.c
parentb610beb4ac5ce8e1516ff71e0da45014211e43b4 (diff)
downloadxrdp-proprietary-f386cea14aff1cc7518be53aa0ab0a7787fc017b.tar.gz
xrdp-proprietary-f386cea14aff1cc7518be53aa0ab0a7787fc017b.zip
make some functions static per 1579343
Diffstat (limited to 'xrdp/xrdp_wm.c')
-rw-r--r--xrdp/xrdp_wm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xrdp/xrdp_wm.c b/xrdp/xrdp_wm.c
index 4a9baecd..c71a5ea3 100644
--- a/xrdp/xrdp_wm.c
+++ b/xrdp/xrdp_wm.c
@@ -137,7 +137,7 @@ xrdp_wm_set_focused(struct xrdp_wm* self, struct xrdp_bitmap* wnd)
}
/******************************************************************************/
-int APP_CC
+static int APP_CC
xrdp_wm_get_pixel(char* data, int x, int y, int width, int bpp)
{
int start;
@@ -622,7 +622,7 @@ xrdp_wm_xor_pat(struct xrdp_wm* self, int x, int y, int cx, int cy)
/*****************************************************************************/
/* this don't are about nothing, just copy the bits */
/* no clipping rects, no windows in the way, nothing */
-int APP_CC
+static int APP_CC
xrdp_wm_bitblt(struct xrdp_wm* self,
struct xrdp_bitmap* dst, int dx, int dy,
struct xrdp_bitmap* src, int sx, int sy,
@@ -658,7 +658,7 @@ xrdp_wm_bitblt(struct xrdp_wm* self,
/*****************************************************************************/
/* return true is rect is totaly exposed going in reverse z order */
/* from wnd up */
-int APP_CC
+static int APP_CC
xrdp_wm_is_rect_vis(struct xrdp_wm* self, struct xrdp_bitmap* wnd,
struct xrdp_rect* rect)
{
@@ -700,7 +700,7 @@ xrdp_wm_is_rect_vis(struct xrdp_wm* self, struct xrdp_bitmap* wnd,
}
/*****************************************************************************/
-int APP_CC
+static int APP_CC
xrdp_wm_move_window(struct xrdp_wm* self, struct xrdp_bitmap* wnd,
int dx, int dy)
{