Make Help->About call ShellAbout

svn path=/trunk/; revision=7731
This commit is contained in:
Steven Edwards 2004-01-18 03:28:08 +00:00
parent 83ea26e456
commit a504f4dba3
2 changed files with 4 additions and 0 deletions

View file

@ -22,6 +22,7 @@
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <windows.h>
#include <shellapi.h>
#include <tchar.h>
#include "main.h"
@ -134,7 +135,9 @@ void OnHelpTopics(void)
void OnHelpAbout(void)
{
ShellAbout(hDlgWnd, _T("ReactOS Calculator"), _T(""), LoadIcon(hInst, MAKEINTRESOURCE(IDI_CALC)));
}
void OnButtonClick(int ButtonID)
{
}

View file

@ -5,6 +5,7 @@
#define ID_MENU_EDIT 0
#define ID_MENU_VIEW 1
#define ID_MENU_HELP 2
#define IDI_CALC 100
#define IDD_STANDARD 101
#define IDD_SCIENTIFIC 102
#define IDR_CALC_STANDARD 103