ole32: add a test for OleInitialize

Paul Vriens paul.vriens.wine at gmail.com
Tue Jan 13 01:28:40 CST 2009


Austin English wrote:
> Pointed out by Anastasius in bug 13011. Tested on XP SP2 & 2K SP4 (and
> Wine, of course).
> 
> 
> 
> ------------------------------------------------------------------------
> 
> 
Hi Austin,

The test case that is pointed out in bug 13011 is different though:

hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
ok(hr == S_OK, "CoInitializeEx failed with error 0x%08x\n", hr);
hr = OleInitialize(NULL);
ok(hr == S_OK, "OleInitialize failed with error 0x%08x\n", hr);

The above succeeds on W2K3 but fails on Wine.

-- 
Cheers,

Paul.



More information about the wine-devel mailing list