diff options
Diffstat (limited to '3rdparty/lzma/CPP/7zip/UI/Explorer/MyMessages.h')
-rw-r--r-- | 3rdparty/lzma/CPP/7zip/UI/Explorer/MyMessages.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3rdparty/lzma/CPP/7zip/UI/Explorer/MyMessages.h b/3rdparty/lzma/CPP/7zip/UI/Explorer/MyMessages.h new file mode 100644 index 00000000000..d5822f45f1c --- /dev/null +++ b/3rdparty/lzma/CPP/7zip/UI/Explorer/MyMessages.h @@ -0,0 +1,16 @@ +// MyMessages.h + +#ifndef __MY_MESSAGES_H +#define __MY_MESSAGES_H + +#include "../../../Common/MyString.h" + +void ShowErrorMessage(HWND window, LPCWSTR message); +inline void ShowErrorMessage(LPCWSTR message) { ShowErrorMessage(0, message); } + +void ShowErrorMessageHwndRes(HWND window, UInt32 langID); +void ShowErrorMessageRes(UInt32 langID); + +void ShowLastErrorMessage(HWND window = 0); + +#endif |