mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:12:57 +00:00
[KERNEL32_APITEST] -Fix gcc build
svn path=/trunk/; revision=73571
This commit is contained in:
parent
57ba1bd2d4
commit
74365d512d
2 changed files with 2 additions and 2 deletions
|
@ -106,7 +106,7 @@ START_TEST(DefaultActCtx)
|
||||||
&KeyedData);
|
&KeyedData);
|
||||||
ok(res == TRUE, "\n");
|
ok(res == TRUE, "\n");
|
||||||
ok(KeyedData.hActCtx == NULL, "Expected null handle for common control context\n");
|
ok(KeyedData.hActCtx == NULL, "Expected null handle for common control context\n");
|
||||||
ok(KeyedData.ulAssemblyRosterIndex != 0, "%d\n", KeyedData.ulAssemblyRosterIndex);
|
ok(KeyedData.ulAssemblyRosterIndex != 0, "%lu\n", KeyedData.ulAssemblyRosterIndex);
|
||||||
//ok(wcsstr(details-> , L"SystemCompative"
|
//ok(wcsstr(details-> , L"SystemCompative"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ VOID _TestVesion(HANDLE dll, DWORD ExpectedVersion, int line)
|
||||||
{
|
{
|
||||||
LPGETVERSION proc = (LPGETVERSION)GetProcAddress(dll, "GetVersion");
|
LPGETVERSION proc = (LPGETVERSION)GetProcAddress(dll, "GetVersion");
|
||||||
DWORD version = proc();
|
DWORD version = proc();
|
||||||
ok_(__FILE__, line)(version == ExpectedVersion, "Got version %d, expected %d\n", version, ExpectedVersion);
|
ok_(__FILE__, line)(version == ExpectedVersion, "Got version %lu, expected %lu\n", version, ExpectedVersion);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID TestDllRedirection()
|
VOID TestDllRedirection()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue