Commit 9593c9e6 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

dlls: Do not use __WINE_ALLOC_SIZE between void and *.

parent 6d0ffa50
......@@ -141,22 +141,22 @@ BOOL NavigateToChm(HHInfo*,LPCWSTR,LPCWSTR);
/* memory allocation functions */
static inline void __WINE_ALLOC_SIZE(1) *heap_alloc(size_t len)
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
{
return HeapAlloc(GetProcessHeap(), 0, len);
}
static inline void __WINE_ALLOC_SIZE(1) *heap_alloc_zero(size_t len)
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
{
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
}
static inline void __WINE_ALLOC_SIZE(2) *heap_realloc(void *mem, size_t len)
static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
{
return HeapReAlloc(GetProcessHeap(), 0, mem, len);
}
static inline void __WINE_ALLOC_SIZE(2) *heap_realloc_zero(void *mem, size_t len)
static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
{
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
}
......
......@@ -51,11 +51,16 @@ extern HINSTANCE LOCALSPL_hInstance;
/* ## Memory allocation functions ## */
static inline void __WINE_ALLOC_SIZE(1) *heap_alloc( size_t len )
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc( size_t len )
{
return HeapAlloc( GetProcessHeap(), 0, len );
}
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero( size_t len )
{
return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, len );
}
static inline BOOL heap_free( void *mem )
{
return HeapFree( GetProcessHeap(), 0, mem );
......
......@@ -654,17 +654,17 @@ extern LONG module_ref;
/* memory allocation functions */
static inline void __WINE_ALLOC_SIZE(1) *heap_alloc(size_t len)
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
{
return HeapAlloc(GetProcessHeap(), 0, len);
}
static inline void __WINE_ALLOC_SIZE(1) *heap_alloc_zero(size_t len)
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
{
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
}
static inline void __WINE_ALLOC_SIZE(2) *heap_realloc(void *mem, size_t len)
static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
{
return HeapReAlloc(GetProcessHeap(), 0, mem, len);
}
......
......@@ -25,7 +25,7 @@ struct _RTF_Info;
extern HANDLE me_heap;
static inline void __WINE_ALLOC_SIZE(1) *heap_alloc( size_t len )
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc( size_t len )
{
return HeapAlloc( me_heap, 0, len );
}
......@@ -35,7 +35,7 @@ static inline BOOL heap_free( void *ptr )
return HeapFree( me_heap, 0, ptr );
}
static inline void __WINE_ALLOC_SIZE(2) *heap_realloc( void *ptr, size_t len )
static inline void * __WINE_ALLOC_SIZE(2) heap_realloc( void *ptr, size_t len )
{
return HeapReAlloc( me_heap, 0, ptr, len );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment