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

mmcndmgr/tests: Enable compilation with long types.

parent 9de5da92
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = mmcndmgr.dll
IMPORTS = ole32 shlwapi uuid
......
......@@ -44,9 +44,9 @@ static void test_get_version(void)
LONG lMajor, lMinor;
hr = IMMCVersionInfo_GetMMCVersion(ver_info, &lMajor, &lMinor);
ok(hr == S_OK, "got 0x%08x, expected 0x%08x\n", hr, S_OK);
ok(hr == S_OK, "got 0x%08lx, expected 0x%08lx\n", hr, S_OK);
if (hr == S_OK)
trace("MMC Version is %d.%d\n", lMajor, lMinor);
trace("MMC Version is %ld.%ld\n", lMajor, lMinor);
}
if (ver_info)
......
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