Commit 9a58365c authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msscript.ocx: Use the global HeapAlloc() wrappers.

parent 2689ecdf
......@@ -28,6 +28,7 @@
#include "msscript.h"
#include "wine/debug.h"
#include "wine/heap.h"
#include "wine/list.h"
WINE_DEFAULT_DEBUG_CHANNEL(msscript);
......@@ -103,16 +104,6 @@ struct ScriptControl {
static HINSTANCE msscript_instance;
static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
{
return HeapAlloc(GetProcessHeap(), 0, len);
}
static inline BOOL heap_free(void *mem)
{
return HeapFree(GetProcessHeap(), 0, mem);
}
typedef enum tid_t {
IScriptControl_tid,
LAST_tid
......
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