Module: wine Branch: refs/heads/master Commit: 3a91a4a2745dfadec315246a6e2814490bd2726d URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=3a91a4a2745dfadec315246a... Author: H. Verbeet <hverbeet(a)gmail.com> Date: Sat Jun 10 23:48:45 2006 +0200 d3d9: Make some test functions static. --- dlls/d3d9/tests/device.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/d3d9/tests/device.c b/dlls/d3d9/tests/device.c index 5859d1a..0984aab 100644 --- a/dlls/d3d9/tests/device.c +++ b/dlls/d3d9/tests/device.c @@ -64,7 +64,7 @@ static void check_mipmap_levels( if (texture) IUnknown_Release( texture ); } -void test_mipmap_levels(void) +static void test_mipmap_levels(void) { HRESULT hr; @@ -103,7 +103,7 @@ void test_mipmap_levels(void) DestroyWindow( hwnd ); } -void test_swapchain(void) +static void test_swapchain(void) { HRESULT hr; HWND hwnd = NULL; @@ -247,7 +247,7 @@ void test_swapchain(void) DestroyWindow( hwnd ); } -void test_refcount(void) +static void test_refcount(void) { HRESULT hr; HWND hwnd = NULL;