mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
18 lines
522 B
C
18 lines
522 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_CloseThemeData(void);
|
|
extern void func_DrawThemeParentBackground(void);
|
|
extern void func_SetThemeAppProperties(void);
|
|
extern void func_SetWindowTheme(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CloseThemeData", func_CloseThemeData },
|
|
{ "DrawThemeParentBackground", func_DrawThemeParentBackground },
|
|
{ "SetWindowTheme", func_SetWindowTheme },
|
|
{ "SetThemeAppProperties", func_SetThemeAppProperties },
|
|
{ 0, 0 }
|
|
};
|