Module: wine Branch: refs/heads/master Commit: 142a62be74b1d0d106d59d93d4b2c4e34d03f3b3 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=142a62be74b1d0d106d59d93...
Author: H. Verbeet hverbeet@gmail.com Date: Sat Jun 10 23:48:36 2006 +0200
d3d8: Make some test functions static.
---
dlls/d3d8/tests/device.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/d3d8/tests/device.c b/dlls/d3d8/tests/device.c index 5a5ac79..89986f8 100644 --- a/dlls/d3d8/tests/device.c +++ b/dlls/d3d8/tests/device.c @@ -37,7 +37,7 @@ #define CHECK_CALL(r,c,d,rc) \ trace("%s failed: %s\n", c, DXGetErrorString8(r)); \ }
-void test_swapchain(void) +static void test_swapchain(void) { HRESULT hr; HWND hwnd = NULL; @@ -153,7 +153,7 @@ void test_swapchain(void) DestroyWindow( hwnd ); }
-void test_refcount(void) +static void test_refcount(void) { HRESULT hr; HWND hwnd = NULL;