wmvcore: Add a __WINE_ALLOC_SIZE attribute to heap_alloc().

And standardize its parameter name.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2017-02-11 14:17:30 +01:00 committed by Alexandre Julliard
parent fc8fcc344f
commit c4f829c0f2
1 changed files with 2 additions and 2 deletions

View File

@ -25,9 +25,9 @@
#include "windef.h"
#include "winbase.h"
static inline void *heap_alloc(size_t len)
static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
{
return HeapAlloc(GetProcessHeap(), 0, len);
return HeapAlloc(GetProcessHeap(), 0, size);
}
static inline BOOL heap_free(void *mem)