mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[INCLUDES/WINE][DBGHELP]
Remove the rbtree.h difference with Wine Staging 1.9.23. CORE-12409 svn path=/trunk/; revision=73367
This commit is contained in:
@@ -1 +1,2 @@
|
||||
#include <stddef.h>
|
||||
#include "../../reactos/wine/rbtree.h"
|
||||
|
||||
@@ -26,10 +26,10 @@
|
||||
#ifdef __GNUC__
|
||||
# define WINE_RB_ENTRY_VALUE(element, type, field) ({ \
|
||||
const typeof(((type *)0)->field) *__ptr = (element); \
|
||||
(type *)((char *)__ptr - FIELD_OFFSET(type, field)); })
|
||||
(type *)((char *)__ptr - offsetof(type, field)); })
|
||||
#else
|
||||
# define WINE_RB_ENTRY_VALUE(element, type, field) \
|
||||
((type *)((char *)(element) - FIELD_OFFSET(type, field)))
|
||||
((type *)((char *)(element) - offsetof(type, field)))
|
||||
#endif
|
||||
|
||||
struct wine_rb_entry
|
||||
|
||||
Reference in New Issue
Block a user