misc/libphysfs/lzma/CPP/Windows/Error.h
author nemo
Tue, 13 Mar 2018 10:20:41 -0400
branchqt5transition
changeset 13179 ddfb4a73524b
parent 12213 bb5522e88ab2
permissions -rw-r--r--
try plastique with fallback to windows - we should find a way to alert the user that qt5-style-plugins would improve rendering

// Windows/Error.h

#ifndef __WINDOWS_ERROR_H
#define __WINDOWS_ERROR_H

#include "Common/MyString.h"

namespace NWindows {
namespace NError {

bool MyFormatMessage(DWORD messageID, CSysString &message);
inline CSysString MyFormatMessage(DWORD messageID)
{
  CSysString message;
  MyFormatMessage(messageID, message);
  return message;
}
#ifdef _UNICODE
inline UString MyFormatMessageW(DWORD messageID)
  { return MyFormatMessage(messageID); }
#else
bool MyFormatMessage(DWORD messageID, UString &message);
inline UString MyFormatMessageW(DWORD messageID)
{
  UString message;
  MyFormatMessage(messageID, message);
  return message;
}
#endif

}}

#endif