mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
a04d175469
- Add test for netshell classes - Add some interfaces svn path=/trunk/; revision=67313
40 lines
1.1 KiB
C
40 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);
|
|
}
|