Commit 82f6b6ff authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 8c8c0f71
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment