mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
2936e38c77
- Verify interfaces against HKLM\Software\Classes\Interface svn path=/trunk/; revision=62541
21 lines
462 B
C
21 lines
462 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_browseui(void);
|
|
extern void func_ieframe(void);
|
|
extern void func_interfaces(void);
|
|
extern void func_shdocvw(void);
|
|
extern void func_shell32(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "browseui", func_browseui },
|
|
{ "ieframe", func_ieframe },
|
|
{ "interfaces", func_interfaces },
|
|
{ "shdocvw", func_shdocvw },
|
|
{ "shell32", func_shell32 },
|
|
|
|
{ 0, 0 }
|
|
};
|