mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
25 lines
506 B
C
Executable File
25 lines
506 B
C
Executable File
// MyMessages.h
|
|
|
|
#ifndef __MYMESSAGES_H
|
|
#define __MYMESSAGES_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
void MyMessageBox(HWND window, LPCWSTR message);
|
|
|
|
inline void MyMessageBox(LPCWSTR message)
|
|
{ MyMessageBox(0, message); }
|
|
|
|
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
|