Files
easy7zip/CPP/7zip/UI/Explorer/MyMessages.h
Igor Pavlov fd8b1d78b4 4.48 beta
2016-05-28 00:15:52 +01:00

31 lines
619 B
C
Executable File

// MyMessages.h
#ifndef __MYMESSAGES_H
#define __MYMESSAGES_H
#include "Common/MyString.h"
void MyMessageBox(HWND window, LPCWSTR message);
inline void MyMessageBox(LPCWSTR message)
{ MyMessageBox(0, message); }
void MyMessageBoxResource(HWND window, UINT32 id
#ifdef LANG
,UINT32 langID
#endif
);
void MyMessageBox(UINT32 id
#ifdef LANG
,UINT32 langID
#endif
);
void ShowErrorMessage(HWND window, DWORD errorMessage);
inline void ShowErrorMessage(DWORD errorMessage)
{ ShowErrorMessage(0, errorMessage); }
void ShowLastErrorMessage(HWND window = 0);
#endif