[PDH_WINETEST] Sync with Wine Staging 2.16. CORE-13762

This commit is contained in:
Amine Khaldi 2017-10-21 13:22:17 +01:00
parent 6c2597df71
commit 2f9927dddc
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,5 @@
add_definitions(-DWINETEST_USE_DBGSTR_LONGLONG)
add_executable(pdh_winetest pdh.c testlist.c)
set_module_type(pdh_winetest win32cui)
add_importlibs(pdh_winetest pdh msvcrt kernel32)

View file

@ -854,7 +854,7 @@ static void test_PdhCollectQueryDataEx(void)
status = PdhGetFormattedCounterValue( counter, PDH_FMT_LARGE, NULL, &value );
ok(status == ERROR_SUCCESS, "PdhGetFormattedCounterValue failed 0x%08x\n", status);
trace( "uptime %x%08x\n", (DWORD)(U(value).largeValue >> 32), (DWORD)U(value).largeValue );
trace( "uptime %s\n", wine_dbgstr_longlong(U(value).largeValue) );
}
}