mirror of
https://github.com/holub/mame
synced 2025-04-30 19:57:11 +03:00
16 lines
199 B
C++
16 lines
199 B
C++
// Windows/Error.h
|
|
|
|
#ifndef __WINDOWS_ERROR_H
|
|
#define __WINDOWS_ERROR_H
|
|
|
|
#include "Common/MyString.h"
|
|
|
|
namespace NWindows {
|
|
namespace NError {
|
|
|
|
UString MyFormatMessageW(DWORD errorCode);
|
|
|
|
}}
|
|
|
|
#endif
|