reactos/rostests/apitests/com/ieframe.c
Thomas Faber a04d175469 [COM_APITEST]
- Add test for netshell classes
- Add some interfaces

svn path=/trunk/; revision=67313
2015-04-19 21:28:09 +00:00

41 lines
1.1 KiB
C

/*
* PROJECT: ReactOS api tests
* LICENSE: GPLv2+ - See COPYING in the top level directory
* PURPOSE: COM interface test for ieframe classes
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
*/
#include "com_apitest.h"
#define NDEBUG
#include <debug.h>
static const CLASS_AND_INTERFACES ExpectedInterfaces[] =
{
{
ID_NAME(CLSID_ShellWindows),
{
{ -0xa0, &IID_IMarshal },
{ -0x20, &IID_IClientSecurity },
{ 0x0, &IID_IMultiQI },
{ 0x0, &IID_IUnknown },
{ FARAWY, &IID_IShellWindows },
{ FARAWY, &IID_IDispatch },
}
},
{
ID_NAME(CLSID_CURLSearchHook),
{
{ 0x0, &IID_IURLSearchHook2 },
{ 0x0, &IID_IURLSearchHook },
{ 0x0, &IID_IUnknown },
}
},
};
static const INT ExpectedInterfaceCount = RTL_NUMBER_OF(ExpectedInterfaces);
START_TEST(ieframe)
{
TestClasses(L"ieframe", ExpectedInterfaces, ExpectedInterfaceCount);
}