mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 03:27:31 +00:00
3c7c94a174
- Consistent email address is consistent. svn path=/trunk/; revision=60631
33 lines
888 B
C
33 lines
888 B
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 },
|
|
}
|
|
},
|
|
};
|
|
static const INT ExpectedInterfaceCount = RTL_NUMBER_OF(ExpectedInterfaces);
|
|
|
|
START_TEST(ieframe)
|
|
{
|
|
TestClasses(L"ieframe", ExpectedInterfaces, ExpectedInterfaceCount);
|
|
}
|