Commit 61a8b946 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

riched20: ME_MakeString() is unused so remove it.

parent bbac7d9f
...@@ -86,7 +86,6 @@ void ME_DumpDocument(ME_TextBuffer *buffer); ...@@ -86,7 +86,6 @@ void ME_DumpDocument(ME_TextBuffer *buffer);
const char *ME_GetDITypeName(ME_DIType type); const char *ME_GetDITypeName(ME_DIType type);
/* string.c */ /* string.c */
ME_String *ME_MakeString(LPCWSTR szText);
ME_String *ME_MakeStringN(LPCWSTR szText, int nMaxChars); ME_String *ME_MakeStringN(LPCWSTR szText, int nMaxChars);
ME_String *ME_MakeStringR(WCHAR cRepeat, int nMaxChars); ME_String *ME_MakeStringR(WCHAR cRepeat, int nMaxChars);
ME_String *ME_StrDup(const ME_String *s); ME_String *ME_StrDup(const ME_String *s);
......
...@@ -49,11 +49,6 @@ ME_String *ME_MakeStringN(LPCWSTR szText, int nMaxChars) ...@@ -49,11 +49,6 @@ ME_String *ME_MakeStringN(LPCWSTR szText, int nMaxChars)
return s; return s;
} }
ME_String *ME_MakeString(LPCWSTR szText)
{
return ME_MakeStringN(szText, lstrlenW(szText));
}
/* Make a string by repeating a char nMaxChars times */ /* Make a string by repeating a char nMaxChars times */
ME_String *ME_MakeStringR(WCHAR cRepeat, int nMaxChars) ME_String *ME_MakeStringR(WCHAR cRepeat, int nMaxChars)
{ {
......
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