Commit e6b907b7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3dxof: Make fdi_{alloc,free}() static.

parent 4898f6cb
......@@ -607,12 +607,12 @@ static int ZIPfdi_decomp(int inlen, int outlen, fdi_decomp_state *decomp_state)
return DECR_OK;
}
void * __cdecl fdi_alloc(ULONG cb)
static void * __cdecl fdi_alloc(ULONG cb)
{
return HeapAlloc(GetProcessHeap(), 0, cb);
}
void __cdecl fdi_free(void *pv)
static void __cdecl fdi_free(void *pv)
{
HeapFree(GetProcessHeap(), 0, pv);
}
......
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