Commit 9b187da8 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

fusion: Remove unused to_multibyte function.

parent b077271c
...@@ -339,11 +339,6 @@ static inline void to_widechar(LPWSTR dest, LPCSTR src) ...@@ -339,11 +339,6 @@ static inline void to_widechar(LPWSTR dest, LPCSTR src)
MultiByteToWideChar(CP_ACP, 0, src, -1, dest, MAX_PATH); MultiByteToWideChar(CP_ACP, 0, src, -1, dest, MAX_PATH);
} }
static inline void to_multibyte(LPSTR dest, LPWSTR src)
{
WideCharToMultiByte(CP_ACP, 0, src, -1, dest, MAX_PATH, NULL, NULL);
}
static void test_assembly_name_props_line(IAssemblyName *name, static void test_assembly_name_props_line(IAssemblyName *name,
const ASMPROP_RES *vals, int line) const ASMPROP_RES *vals, int line)
{ {
......
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