Commit 0d8d0b9f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

scrrun: Add a __WINE_ALLOC_SIZE attribute to heap_alloc().

parent 93a8ede0
......@@ -46,7 +46,7 @@ struct provideclassinfo {
extern void init_classinfo(const GUID *guid, IUnknown *outer, struct provideclassinfo *classinfo) DECLSPEC_HIDDEN;
static inline void *heap_alloc(size_t len)
static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
{
return HeapAlloc(GetProcessHeap(), 0, 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