Francois Gouget fgouget@free.fr writes:
@@ -1600,26 +1600,26 @@ static void TLB_abort(void) DebugBreak(); }
-void* __WINE_ALLOC_SIZE(1) heap_alloc_zero(unsigned size) +static void* __WINE_ALLOC_SIZE(1) heap_alloc_zero(unsigned size) { void *ret = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size); if (!ret) ERR("cannot allocate memory\n"); return ret; }
There are standard functions that I expect we'd want to use in more places (right Michael?)