mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:31:45 +00:00
[COM_APITEST]
- Add a test verifying the interfaces exposed by various COM classes, grouped by server dll ROSTESTS-98 svn path=/trunk/; revision=59442
This commit is contained in:
parent
cf2e5acf00
commit
7b4f26f22d
9 changed files with 1197 additions and 0 deletions
21
rostests/apitests/com/testlist.c
Normal file
21
rostests/apitests/com/testlist.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
#define WIN32_LEAN_AND_MEAN
|
||||
#define __ROS_LONG64__
|
||||
#include <windows.h>
|
||||
|
||||
#define STANDALONE
|
||||
#include "wine/test.h"
|
||||
|
||||
extern void func_browseui(void);
|
||||
extern void func_ieframe(void);
|
||||
extern void func_shdocvw(void);
|
||||
extern void func_shell32(void);
|
||||
|
||||
const struct test winetest_testlist[] =
|
||||
{
|
||||
{ "browseui", func_browseui },
|
||||
{ "ieframe", func_ieframe },
|
||||
{ "shdocvw", func_shdocvw },
|
||||
{ "shell32", func_shell32 },
|
||||
|
||||
{ 0, 0 }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue