| commit | e6b907b7b388e5468b093868d5e2796dd9554161 | [log] [tgz] |
|---|---|---|
| author | Francois Gouget <fgouget@free.fr> | Thu Jun 24 10:12:31 2010 +0200 |
| committer | Alexandre Julliard <julliard@winehq.org> | Thu Jun 24 10:34:35 2010 +0200 |
| tree | 75723c790650be087c8682b4f3a3064e04c5f49e | |
| parent | 4898f6cb36c025c5296b0a78ccc846edf8938768 [diff] |
d3dxof: Make fdi_{alloc,free}() static.
diff --git a/dlls/d3dxof/mszip.c b/dlls/d3dxof/mszip.c index 73fa848..1796616 100644 --- a/dlls/d3dxof/mszip.c +++ b/dlls/d3dxof/mszip.c
@@ -607,12 +607,12 @@ 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); }