2021-10-19 21:27:23 +01:00
|
|
|
// MyMessages.h
|
|
|
|
|
|
2023-09-24 03:13:03 +01:00
|
|
|
#ifndef ZIP7_INC_MY_MESSAGES_H
|
|
|
|
|
#define ZIP7_INC_MY_MESSAGES_H
|
2021-10-19 21:27:23 +01:00
|
|
|
|
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
|
|
|
|
|
|
void ShowErrorMessage(HWND window, LPCWSTR message);
|
2023-09-24 03:13:03 +01:00
|
|
|
inline void ShowErrorMessage(LPCWSTR message) { ShowErrorMessage(NULL, message); }
|
2021-10-19 21:27:23 +01:00
|
|
|
|
|
|
|
|
void ShowErrorMessageHwndRes(HWND window, UInt32 langID);
|
|
|
|
|
void ShowErrorMessageRes(UInt32 langID);
|
|
|
|
|
|
2023-09-24 03:13:03 +01:00
|
|
|
void ShowLastErrorMessage(HWND window = NULL);
|
2021-10-19 21:27:23 +01:00
|
|
|
|
|
|
|
|
#endif
|