Commit 537d9332 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3dxof: Make debugstr_fourcc() static.

parent 2f8f70bc
......@@ -58,7 +58,7 @@ static HRESULT IDirectXFileEnumObjectImpl_Create(IDirectXFileEnumObjectImpl** pp
static HRESULT IDirectXFileSaveObjectImpl_Create(IDirectXFileSaveObjectImpl** ppObj);
/* FOURCC to string conversion for debug messages */
const char *debugstr_fourcc(DWORD fourcc)
static const char *debugstr_fourcc(DWORD fourcc)
{
if (!fourcc) return "'null'";
return wine_dbg_sprintf ("\'%c%c%c%c\'",
......
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