mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 10:44:47 +00:00
d3dxof: Make fdi_{alloc,free}() static.
This commit is contained in:
parent
4898f6cb36
commit
e6b907b7b3
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue