mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
30
modules/rostests/apitests/com/ole32.c
Normal file
30
modules/rostests/apitests/com/ole32.c
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue