riched20/tests: Make keep_responsive() and customWordBreakProc() static.

This commit is contained in:
Francois Gouget 2008-12-13 12:05:29 +01:00 committed by Alexandre Julliard
parent 8c8c0f7146
commit 82f6b6ff41
1 changed files with 2 additions and 2 deletions

View File

@ -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;