mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[XDK][PSDK][WINE] Unify ARRAY_SIZE definition for Wine modules. CORE-15127
This commit is contained in:
parent
ccde12483f
commit
82faa151e5
13 changed files with 4 additions and 24 deletions
|
@ -47,8 +47,6 @@
|
|||
|
||||
#define D3D9_TEXTURE_MIPMAP_DIRTY 0x1
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
extern const struct wined3d_parent_ops d3d9_null_wined3d_parent_ops DECLSPEC_HIDDEN;
|
||||
|
||||
HRESULT vdecl_convert_fvf(DWORD FVF, D3DVERTEXELEMENT9 **ppVertexElements) DECLSPEC_HIDDEN;
|
||||
|
|
|
@ -32,8 +32,6 @@
|
|||
|
||||
#define ULONG64_MAX (~(ULONG64)0)
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
|
||||
|
||||
struct vec4
|
||||
{
|
||||
float x, y, z, w;
|
||||
|
|
|
@ -39,8 +39,6 @@
|
|||
#include "wine/list.h"
|
||||
#include "wine/wined3d.h"
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
extern const struct wined3d_parent_ops ddraw_null_wined3d_parent_ops DECLSPEC_HIDDEN;
|
||||
extern DWORD force_refresh_rate DECLSPEC_HIDDEN;
|
||||
|
||||
|
|
|
@ -22,8 +22,6 @@
|
|||
#include <windef.h>
|
||||
#include <winuser.h>
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
#ifndef MAX_AVISTREAMS
|
||||
#define MAX_AVISTREAMS 8
|
||||
#endif
|
||||
|
|
|
@ -38,8 +38,6 @@
|
|||
extern HMODULE COMCTL32_hModule DECLSPEC_HIDDEN;
|
||||
extern HBRUSH COMCTL32_hPattern55AABrush DECLSPEC_HIDDEN;
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
/* Property sheet / Wizard */
|
||||
#define IDD_PROPSHEET 1006
|
||||
#define IDD_WIZARD 1020
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
|
||||
#include "dlgs.h"
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
/* Common dialogs implementation globals */
|
||||
#define COMDLG32_Atom MAKEINTATOM(0xa000) /* MS uses this one to identify props */
|
||||
|
||||
|
|
|
@ -35,8 +35,6 @@
|
|||
|
||||
#include "gdiplus.h"
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
#define GP_DEFAULT_PENSTYLE (PS_GEOMETRIC | PS_SOLID | PS_ENDCAP_FLAT | PS_JOIN_MITER)
|
||||
#define MAX_ARC_PTS (13)
|
||||
#define MAX_DASHLEN (16) /* this is a limitation of gdi */
|
||||
|
|
|
@ -77,8 +77,6 @@ static const WCHAR updateW[] = {'U','P','D','A','T','E'};
|
|||
static const WCHAR valuesW[] = {'V','A','L','U','E','S'};
|
||||
static const WCHAR whereW[] = {'W','H','E','R','E'};
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array)/sizeof((array)[0]))
|
||||
|
||||
/*
|
||||
** These are the keywords
|
||||
** They MUST be in alphabetical order
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
# error You must include config.h to use this header
|
||||
#endif
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
typedef enum {
|
||||
MSXML_DEFAULT = 0,
|
||||
MSXML2 = 20,
|
||||
|
|
|
@ -18,8 +18,6 @@
|
|||
#ifndef _SCRRUN_PRIVATE_H_
|
||||
#define _SCRRUN_PRIVATE_H_
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
extern HRESULT WINAPI FileSystem_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
|
||||
extern HRESULT WINAPI Dictionary_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
|
||||
|
||||
|
|
|
@ -27,8 +27,6 @@
|
|||
#include "ole2.h"
|
||||
#include "olectl.h"
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
/* typelibs */
|
||||
typedef enum tid_t {
|
||||
NULL_tid,
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
|
||||
#include "wine/heap.h"
|
||||
|
||||
#define ARRAY_SIZE(array) (sizeof(array)/sizeof((array)[0]))
|
||||
|
||||
static inline void *m_alloc(IMalloc *imalloc, size_t len)
|
||||
{
|
||||
if (imalloc)
|
||||
|
|
|
@ -4308,6 +4308,10 @@ typedef struct _TP_CALLBACK_ENVIRON_V1 {
|
|||
} TP_CALLBACK_ENVIRON_V1, TP_CALLBACK_ENVIRON, *PTP_CALLBACK_ENVIRON;
|
||||
#endif /* (_WIN32_WINNT >= _WIN32_WINNT_WIN7) */
|
||||
|
||||
#ifdef __WINESRC__
|
||||
# define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue