mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 08:20:27 +00:00
[INCLUDE/WINE][USER32_APITEST] Add ARRAY_SIZE to test.h and remove it from RealGetWindowClass.c. CORE-14656
This commit is contained in:
parent
2f668a30bd
commit
41e2b83f96
2 changed files with 1 additions and 2 deletions
|
@ -7,8 +7,6 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
|
|
||||||
|
|
||||||
static PWSTR ControlsList[] =
|
static PWSTR ControlsList[] =
|
||||||
{
|
{
|
||||||
L"Button\0",
|
L"Button\0",
|
||||||
|
|
|
@ -155,6 +155,7 @@ extern void __winetest_cdecl winetest_trace( const char *msg, ... );
|
||||||
#define todo_wine_if(is_todo) todo_if((is_todo) && !strcmp(winetest_platform, "wine"))
|
#define todo_wine_if(is_todo) todo_if((is_todo) && !strcmp(winetest_platform, "wine"))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||||
|
|
||||||
#ifdef NONAMELESSUNION
|
#ifdef NONAMELESSUNION
|
||||||
# define U(x) (x).u
|
# define U(x) (x).u
|
||||||
|
|
Loading…
Reference in a new issue