[PDH_WINETEST]

* Sync with Wine 1.7.17.
CORE-8080

svn path=/trunk/; revision=63071
This commit is contained in:
Amine Khaldi 2014-04-30 12:50:57 +00:00
parent 8df2aa0ed1
commit 49345d645b
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
add_executable(pdh_winetest pdh.c testlist.c)
set_module_type(pdh_winetest win32cui)
add_importlibs(pdh_winetest pdh msvcrt kernel32 ntdll)
add_importlibs(pdh_winetest pdh msvcrt kernel32)
if(MSVC)
add_importlibs(pdh_winetest ntdll)
endif()
add_cd_file(TARGET pdh_winetest DESTINATION reactos/bin FOR all)

View file

@ -63,7 +63,7 @@ static BOOL is_lang_english(void)
static void init_function_ptrs( void )
{
pdh = GetModuleHandle( "pdh" );
pdh = GetModuleHandleA( "pdh" );
GETFUNCPTR( PdhAddEnglishCounterA )
GETFUNCPTR( PdhAddEnglishCounterW )
GETFUNCPTR( PdhCollectQueryDataWithTime )