Commit 0c7863d9 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

odbccp32: Use the global HeapAlloc() wrappers.

parent ffb80476
......@@ -31,6 +31,7 @@
#include "winnls.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/heap.h"
#include "odbcinst.h"
......@@ -84,16 +85,6 @@ static void clear_errors(void)
num_errors = 0;
}
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 inline WCHAR *heap_strdupAtoW(const char *str)
{
LPWSTR ret = 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