mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
05838e4ee8
- Add some classes and interfaces related to CORE-10838. svn path=/trunk/; revision=71136
30 lines
766 B
C
30 lines
766 B
C
/*
|
|
* PROJECT: ReactOS API tests
|
|
* LICENSE: LGPLv2.1+ - See COPYING.LIB in the top level directory
|
|
* PURPOSE: COM interface test for ole32 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_StdComponentCategoriesMgr),
|
|
{
|
|
{ 0x0, &IID_IUnknown },
|
|
{ FARAWY, &IID_ICatRegister },
|
|
{ FARAWY, &IID_ICatInformation },
|
|
},
|
|
L"Both"
|
|
},
|
|
};
|
|
static const INT ExpectedInterfaceCount = RTL_NUMBER_OF(ExpectedInterfaces);
|
|
|
|
START_TEST(ole32)
|
|
{
|
|
TestClasses(L"ole32", ExpectedInterfaces, ExpectedInterfaceCount);
|
|
}
|