Re: [3/3] [resend] wsdapi/tests: Add initial tests for WSDCreateDiscoveryPublisher
10 Apr
2017
10 Apr
'17
4:18 p.m.
Owen Rudge <orudge(a)codeweavers.com> writes:
+START_TEST(discovery) +{ + HMODULE dllHandle; + + CoInitialize(NULL); + + dllHandle = LoadLibraryA("wsdapi.dll"); + + if (dllHandle) + { + BOOL ret; + + ret = FreeLibrary(dllHandle); + ok(ret, "FreeLibrary(1) returned %d\n", GetLastError()); + }
This test doesn't seem very useful. Also there shouldn't be any reason to load the library dynamically, you could simply link to it. -- Alexandre Julliard julliard(a)winehq.org
3169
Age (days ago)
3169
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard