mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 10:11:38 -06:00
3.13
This commit is contained in:
21
7zip/FileManager/Resource/AboutDialog/AboutDialog.h
Executable file
21
7zip/FileManager/Resource/AboutDialog/AboutDialog.h
Executable file
@@ -0,0 +1,21 @@
|
||||
// AboutDialog.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __ABOUTDIALOG_H
|
||||
#define __ABOUTDIALOG_H
|
||||
|
||||
#include "resource.h"
|
||||
#include "Windows/Control/Dialog.h"
|
||||
|
||||
class CAboutDialog: public NWindows::NControl::CModalDialog
|
||||
{
|
||||
public:
|
||||
virtual bool OnInit();
|
||||
virtual void OnHelp();
|
||||
virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
||||
INT_PTR Create(HWND aWndParent = 0)
|
||||
{ return CModalDialog::Create(MAKEINTRESOURCE(IDD_ABOUT), aWndParent); }
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user