Module: wine
Branch: master
Commit: 82f6b6ff41a0feda43721d5015c94fc02842ef28
URL: http://source.winehq.org/git/wine.git/?a=commit;h=82f6b6ff41a0feda43721d501…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Sat Dec 13 12:05:29 2008 +0100
riched20/tests: Make keep_responsive() and customWordBreakProc() static.
---
dlls/riched20/tests/editor.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/riched20/tests/editor.c b/dlls/riched20/tests/editor.c
index f4f5f1b..39d519b 100644
--- a/dlls/riched20/tests/editor.c
+++ b/dlls/riched20/tests/editor.c
@@ -59,7 +59,7 @@ static HWND new_richedit(HWND parent) {
/* Keeps the window reponsive for the deley_time in seconds.
* This is useful for debugging a test to see what is happening. */
-void keep_responsive(time_t delay_time)
+static void keep_responsive(time_t delay_time)
{
MSG msg;
time_t end;
@@ -5542,7 +5542,7 @@ static void test_undo_coalescing(void)
DestroyWindow(hwnd);
}
-LONG CALLBACK customWordBreakProc(WCHAR *text, int pos, int bytes, int code)
+static LONG CALLBACK customWordBreakProc(WCHAR *text, int pos, int bytes, int code)
{
int length;