Commit 1796e7be authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

iccvid: Use the global HeapAlloc() wrappers.

parent 0f697d99
......@@ -51,6 +51,7 @@
#include "iccvid_private.h"
#include "wine/debug.h"
#include "wine/heap.h"
WINE_DEFAULT_DEBUG_CHANNEL(iccvid);
......@@ -81,16 +82,6 @@ typedef struct _ICCVID_Info
cinepak_info *cvinfo;
} ICCVID_Info;
static inline void* __WINE_ALLOC_SIZE(1) heap_alloc(size_t size)
{
return HeapAlloc(GetProcessHeap(), 0, size);
}
static inline BOOL heap_free(void *mem)
{
return HeapFree(GetProcessHeap(), 0, mem);
}
/* ------------------------------------------------------------------------ */
static unsigned char *in_buffer, uiclip[1024], *uiclp = NULL;
......
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