From 8eb5e68168aadc0f51f95640f2d84d4b5f6d9729 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 28 Nov 2003 23:17:56 +0000 Subject: [PATCH] cbthread and cbowner don't need to be exported. --- server/clipboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/clipboard.c b/server/clipboard.c index 5a885a0febe..7d54e571e09 100644 --- a/server/clipboard.c +++ b/server/clipboard.c @@ -30,10 +30,10 @@ #include "object.h" #include "user.h" -struct thread *cbthread; /* thread id that has clipboard open */ +static struct thread *cbthread; /* thread id that has clipboard open */ static user_handle_t clipboard; /* window that has clipboard open */ -struct thread *cbowner; /* thread id that owns the clipboard */ +static struct thread *cbowner; /* thread id that owns the clipboard */ static user_handle_t owner; /* window that owns the clipboard data */ static user_handle_t viewer; /* first window in clipboard viewer list */