int cdecl Message (UINT type, LPCTSTR title, LPCTSTR text, LPCTSTR fmt, ...)
{
va_list arg;
- if (fmt != NULL)
+ // if (fmt != NULL)
va_start (arg, fmt);
return vMessage (type, (LONG)title, (LONG)text, fmt, arg);
}
int cdecl Message (UINT type, LPCTSTR title, int text, LPCTSTR fmt, ...)
{
va_list arg;
- if (fmt != NULL)
+ // if (fmt != NULL)
va_start (arg, fmt);
return vMessage (type, (LONG)title, (LONG)text, fmt, arg);
}
int cdecl Message (UINT type, int title, LPCTSTR text, LPCTSTR fmt, ...)
{
va_list arg;
- if (fmt != NULL)
+ // if (fmt != NULL)
va_start (arg, fmt);
return vMessage (type, (LONG)title, (LONG)text, fmt, arg);
}
int cdecl Message (UINT type, int title, int text, LPCTSTR fmt, ...)
{
va_list arg;
- if (fmt != NULL)
+ // if (fmt != NULL)
va_start (arg, fmt);
return vMessage (type, (LONG)title, (LONG)text, fmt, arg);
}
void cdecl FormatMultiString (LPTSTR *ppszTarget, BOOL fAddHead, LPCTSTR pszTemplate, LPCTSTR pszFormat, ...)
{
va_list arg;
- if (pszFormat != NULL)
+ //if (pszFormat != NULL)
va_start (arg, pszFormat);
vFormatMultiString (ppszTarget, fAddHead, (LONG)pszTemplate, pszFormat, arg);
}
void cdecl FormatMultiString (LPTSTR *ppszTarget, BOOL fAddHead, int idsTemplate, LPCTSTR pszFormat, ...)
{
va_list arg;
- if (pszFormat != NULL)
+ //if (pszFormat != NULL)
va_start (arg, pszFormat);
vFormatMultiString (ppszTarget, fAddHead, (LONG)idsTemplate, pszFormat, arg);
}
LPTSTR cdecl FormatString (LPCTSTR psz, LPCTSTR pszFmt, ...)
{
va_list arg;
- if (pszFmt != NULL)
+ //if (pszFmt != NULL)
va_start (arg, pszFmt);
return vFormatString ((LONG)psz, pszFmt, arg);
}
LPTSTR cdecl FormatString (int ids, LPCTSTR pszFmt, ...)
{
va_list arg;
- if (pszFmt != NULL)
+ //if (pszFmt != NULL)
va_start (arg, pszFmt);
return vFormatString ((LONG)ids, pszFmt, arg);
}