mirror of
https://github.com/reactos/reactos.git
synced 2025-07-13 00:24:14 +00:00

Implementing missing features... JIRA issue: CORE-12805 - Add dll/win32/uxtheme/errinfo.c. - Implement GetThemeParseErrorInfo function in errinfo.c. - Modify uxtheme.spec. - Add GetThemeParseErrorInfo prototype to <uxundoc.h>. - Adapt <uxundoc.h> to C++. - Add global variable gdwErrorInfoTlsIndex. - Add UXTHEME_UnInitSystem function.
20 lines
632 B
C
20 lines
632 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_CloseThemeData(void);
|
|
extern void func_DrawThemeParentBackground(void);
|
|
extern void func_GetThemeParseErrorInfo(void);
|
|
extern void func_SetThemeAppProperties(void);
|
|
extern void func_SetWindowTheme(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CloseThemeData", func_CloseThemeData },
|
|
{ "DrawThemeParentBackground", func_DrawThemeParentBackground },
|
|
{ "GetThemeParseErrorInfo", func_GetThemeParseErrorInfo },
|
|
{ "SetWindowTheme", func_SetWindowTheme },
|
|
{ "SetThemeAppProperties", func_SetThemeAppProperties },
|
|
{ 0, 0 }
|
|
};
|