Implemented "Home page" the menu point.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@279 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/rfbplayer/rfbplayer.cxx b/rfbplayer/rfbplayer.cxx
index 518fb2b..149acd5 100644
--- a/rfbplayer/rfbplayer.cxx
+++ b/rfbplayer/rfbplayer.cxx
@@ -406,6 +406,8 @@
       PostQuitMessage(0);
       break;
     case ID_HOMEPAGE:
+      ShellExecute(getMainHandle(), _T("open"), _T("http://www.tightvnc.com/"),
+        NULL, NULL, SW_SHOWDEFAULT);
       break;
     case ID_HELP_COMMANDLINESWITCHES:
       {
diff --git a/rfbplayer/rfbplayer.h b/rfbplayer/rfbplayer.h
index d52ff2c..e92a44e 100644
--- a/rfbplayer/rfbplayer.h
+++ b/rfbplayer/rfbplayer.h
@@ -20,6 +20,7 @@
 
 #include <commdlg.h>
 #include <windows.h>
+#include <shellapi.h>
 
 #include <rfb_win32/DIBSectionBuffer.h>