PhysicsFS 2.0.3 imported.
This commit is contained in:
parent
bcc0937726
commit
993311d151
459 changed files with 87785 additions and 0 deletions
33
lib/physfs-2.0.3/lzma/CPP/Windows/Error.h
Normal file
33
lib/physfs-2.0.3/lzma/CPP/Windows/Error.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
// 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
|
Loading…
Add table
Add a link
Reference in a new issue