This commit is contained in:
Igor Pavlov
2014-11-23 00:00:00 +00:00
committed by Kornel Lesiński
parent 83f8ddcc5b
commit f08f4dcc3c
1158 changed files with 76451 additions and 35082 deletions

22
CPP/7zip/UI/Explorer/MyMessages.h Executable file → Normal file
View File

@@ -1,28 +1,16 @@
// MyMessages.h
#ifndef __MYMESSAGES_H
#define __MYMESSAGES_H
#ifndef __MY_MESSAGES_H
#define __MY_MESSAGES_H
#include "Common/MyString.h"
#include "Common/Types.h"
#include "../../../Common/MyString.h"
void ShowErrorMessage(HWND window, LPCWSTR message);
inline void ShowErrorMessage(LPCWSTR message) { ShowErrorMessage(0, message); }
void ShowErrorMessageHwndRes(HWND window, UINT resID
#ifdef LANG
, UInt32 langID
#endif
);
void ShowErrorMessageHwndRes(HWND window, UInt32 langID);
void ShowErrorMessageRes(UInt32 langID);
void ShowErrorMessageRes(UINT resID
#ifdef LANG
, UInt32 langID
#endif
);
// void ShowErrorMessageDWORD(HWND window, DWORD errorCode);
// inline void ErrorMessageDWORD(DWORD errorCode) { ShowErrorMessageDWORD(0, errorCode); }
void ShowLastErrorMessage(HWND window = 0);
#endif