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

comcat/tests: Enable compilation with long types.

parent 8c7d53a5
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = comcat.dll
IMPORTS = ole32 advapi32
......
......@@ -29,7 +29,7 @@
#include "wine/test.h"
#define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error 0x%08x\n", hr)
#define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error %#08lx\n", hr)
static BOOL register_testentry(void)
{
......@@ -88,8 +88,8 @@ static void do_enum(void)
ok_ole_success(hr,"ICatInformation_EnumClassesOfCategories");
hr = IEnumGUID_Next(pIEnum,1,the_guid, &fetched);
ok (hr == S_FALSE,"Expected S_FALSE, got 0x%08x\n", hr);
ok (fetched == 0,"Fetched wrong number of guids %u\n",fetched);
ok (hr == S_FALSE,"Expected S_FALSE, got 0x%08lx\n", hr);
ok (fetched == 0,"Fetched wrong number of guids %lu\n",fetched);
IEnumGUID_Release(pIEnum);
if (register_testentry())
......@@ -98,8 +98,8 @@ static void do_enum(void)
ok_ole_success(hr,"ICatInformation_EnumClassesOfCategories");
hr = IEnumGUID_Next(pIEnum,1,the_guid, &fetched);
ok (hr == S_OK,"Expected S_OK, got 0x%08x\n", hr);
ok (fetched == 1,"Fetched wrong number of guids %u\n",fetched);
ok (hr == S_OK,"Expected S_OK, got 0x%08lx\n", hr);
ok (fetched == 1,"Fetched wrong number of guids %lu\n",fetched);
ok (IsEqualGUID(the_guid,&wanted_guid),"Guids do not match\n");
IEnumGUID_Release(pIEnum);
......
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