Commit 4d29b971 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

d3dcompiler_43: Make write_dword_unknown() static.

parent aaec50d4
......@@ -603,6 +603,5 @@ static inline void write_dword(char **ptr, DWORD d)
}
void skip_dword_unknown(const char **ptr, unsigned int count) DECLSPEC_HIDDEN;
void write_dword_unknown(char **ptr, DWORD d) DECLSPEC_HIDDEN;
#endif /* __WINE_D3DCOMPILER_PRIVATE_H */
......@@ -520,7 +520,7 @@ void skip_dword_unknown(const char **ptr, unsigned int count)
}
}
void write_dword_unknown(char **ptr, DWORD d)
static void write_dword_unknown(char **ptr, DWORD d)
{
FIXME("Writing unknown DWORD 0x%08x\n", d);
write_dword(ptr, d);
......
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