xref: /aosp_15_r20/external/lzma/CPP/7zip/UI/Explorer/MyMessages.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // MyMessages.h
2 
3 #ifndef ZIP7_INC_MY_MESSAGES_H
4 #define ZIP7_INC_MY_MESSAGES_H
5 
6 #include "../../../Common/MyString.h"
7 
8 void ShowErrorMessage(HWND window, LPCWSTR message);
ShowErrorMessage(LPCWSTR message)9 inline void ShowErrorMessage(LPCWSTR message) { ShowErrorMessage(NULL, message); }
10 
11 void ShowErrorMessageHwndRes(HWND window, UInt32 langID);
12 void ShowErrorMessageRes(UInt32 langID);
13 
14 void ShowLastErrorMessage(HWND window = NULL);
15 
16 #endif
17