Michael Stefaniuc : dxgi/tests: Compile with -D__WINESRC__.

Alexandre Julliard julliard at winehq.org
Wed Oct 16 14:25:50 CDT 2013


Module: wine
Branch: master
Commit: 22af120a7a3f7f4fc8fb234f4d514a37fa59afa7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=22af120a7a3f7f4fc8fb234f4d514a37fa59afa7

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Oct 16 09:46:57 2013 +0200

dxgi/tests: Compile with -D__WINESRC__.

---

 dlls/dxgi/tests/Makefile.in |    1 -
 dlls/dxgi/tests/device.c    |    8 ++++----
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/dlls/dxgi/tests/Makefile.in b/dlls/dxgi/tests/Makefile.in
index 02888af..08d2db1 100644
--- a/dlls/dxgi/tests/Makefile.in
+++ b/dlls/dxgi/tests/Makefile.in
@@ -1,6 +1,5 @@
 TESTDLL   = dxgi.dll
 IMPORTS   = dxgi user32
-EXTRADEFS = -U__WINESRC__ -DWINE_STRICT_PROTOTYPES -DWINE_NO_NAMELESS_EXTENSION -DWIDL_C_INLINE_WRAPPERS
 
 C_SRCS = \
 	device.c
diff --git a/dlls/dxgi/tests/device.c b/dlls/dxgi/tests/device.c
index d492a95..9be59db 100644
--- a/dlls/dxgi/tests/device.c
+++ b/dlls/dxgi/tests/device.c
@@ -308,7 +308,7 @@ static void test_createswapchain(IDXGIDevice *device)
     IDXGISwapChain *swapchain;
     DXGI_SWAP_CHAIN_DESC creation_desc, result_desc;
     HRESULT hr;
-    WNDCLASS wc = {0};
+    WNDCLASSA wc = {0};
     UINT i;
 
     const struct refresh_rates refresh_list[] =
@@ -321,10 +321,10 @@ static void test_createswapchain(IDXGIDevice *device)
     };
 
 
-    wc.lpfnWndProc = DefWindowProc;
+    wc.lpfnWndProc = DefWindowProcA;
     wc.lpszClassName = "dxgi_test_wc";
 
-    RegisterClass(&wc);
+    RegisterClassA(&wc);
 
     creation_desc.OutputWindow = 0;
     creation_desc.BufferDesc.Width = 800;
@@ -338,7 +338,7 @@ static void test_createswapchain(IDXGIDevice *device)
     creation_desc.SampleDesc.Quality = 0;
     creation_desc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
     creation_desc.BufferCount = 1;
-    creation_desc.OutputWindow = CreateWindow("dxgi_test_wc", "dxgi_test", 0, 0, 0, 0, 0, 0, 0, 0, 0);
+    creation_desc.OutputWindow = CreateWindowA("dxgi_test_wc", "dxgi_test", 0, 0, 0, 0, 0, 0, 0, 0, 0);
     creation_desc.Windowed = TRUE;
     creation_desc.SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
     creation_desc.Flags = 0;




More information about the wine-cvs mailing list