riched20: ME_MakeString() is unused so remove it.

This commit is contained in:
Francois Gouget 2009-05-15 01:50:06 +02:00 committed by Alexandre Julliard
parent bbac7d9fb4
commit 61a8b94634
2 changed files with 0 additions and 6 deletions

View File

@ -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);

View File

@ -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)
{ {