Mercurial > vba-linux
view src/win32/MainWndHelp.cpp @ 8:08a8e09ca414
add files required by automake
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:54:39 -0600 |
parents | f9f4f1b99eed |
children |
line wrap: on
line source
1 #include "stdafx.h"2 #include "resource.h"3 #include "MainWnd.h"4 #include "AboutDialog.h"5 #include "BugReport.h"6 #include "VBA.h"8 extern int emulating;10 void MainWnd::OnHelpAbout()11 {12 theApp.winCheckFullscreen();13 AboutDialog dlg;15 dlg.DoModal();16 }18 void MainWnd::OnHelpFaq()19 {20 ::ShellExecute(0, _T("open"), "http://vba.ngemu.com/faq.shtml",21 0, 0, SW_SHOWNORMAL);22 }24 void MainWnd::OnHelpBugreport()25 {26 BugReport dlg(theApp.m_pMainWnd);28 dlg.DoModal();29 }