Commit b228b914 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

windowscodecsext/tests: Enable compilation with long types.

parent e9ef4df8
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = windowscodecsext.dll
IMPORTS = windowscodecsext ole32
......
......@@ -32,28 +32,28 @@ static void test_WICCreateColorTransform_Proxy(void)
IWICColorTransform *transform;
hr = WICCreateColorTransform_Proxy( NULL );
ok( hr == E_INVALIDARG, "got %08x\n", hr );
ok( hr == E_INVALIDARG, "got %08lx\n", hr );
transform = NULL;
hr = WICCreateColorTransform_Proxy( &transform );
ok( hr == S_OK, "got %08x\n", hr );
ok( hr == S_OK, "got %08lx\n", hr );
if (transform) IWICColorTransform_Release( transform );
hr = CoInitializeEx( NULL, COINIT_APARTMENTTHREADED );
ok( hr == S_OK, "got %08x\n", hr );
ok( hr == S_OK, "got %08lx\n", hr );
transform = NULL;
hr = WICCreateColorTransform_Proxy( &transform );
ok( hr == S_OK, "got %08x\n", hr );
ok( hr == S_OK, "got %08lx\n", hr );
if (transform) IWICColorTransform_Release( transform );
CoUninitialize();
hr = CoInitializeEx( NULL, COINIT_MULTITHREADED );
ok( hr == S_OK, "got %08x\n", hr );
ok( hr == S_OK, "got %08lx\n", hr );
transform = NULL;
hr = WICCreateColorTransform_Proxy( &transform );
ok( hr == S_OK, "got %08x\n", hr );
ok( hr == S_OK, "got %08lx\n", hr );
if (transform) IWICColorTransform_Release( transform );
CoUninitialize();
}
......
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