[COM_APITEST]
[reactos.git] / rostests / apitests / com / ieframe.c
1 /*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPLv2+ - See COPYING in the top level directory
4 * PURPOSE: COM interface test for ieframe classes
5 * PROGRAMMER: Thomas Faber <thfabba@gmx.de>
6 */
7
8 #include "com_apitest.h"
9
10 #define NDEBUG
11 #include <debug.h>
12
13 static const CLASS_AND_INTERFACES ExpectedInterfaces[] =
14 {
15 {
16 ID_NAME(CLSID_ShellWindows),
17 {
18 { -0xa0, &IID_IMarshal },
19 { -0x20, &IID_IClientSecurity },
20 { 0x0, &IID_IMultiQI },
21 { 0x0, &IID_IUnknown },
22 { FARAWY, &IID_IShellWindows },
23 { FARAWY, &IID_IDispatch },
24 }
25 },
26 };
27 static const INT ExpectedInterfaceCount = RTL_NUMBER_OF(ExpectedInterfaces);
28
29 START_TEST(ieframe)
30 {
31 TestClasses(L"ieframe", ExpectedInterfaces, ExpectedInterfaceCount);
32 }