winport: add wiki and faq links to menu;
This commit is contained in:
parent
ebfe8a312c
commit
b05fe32a44
|
@ -5956,13 +5956,21 @@ DOKEYDOWN:
|
||||||
WritePrivateProfileInt("Display", "ScreenGapColor", ScreenGapColor, IniName);
|
WritePrivateProfileInt("Display", "ScreenGapColor", ScreenGapColor, IniName);
|
||||||
break;
|
break;
|
||||||
case IDM_WEBSITE:
|
case IDM_WEBSITE:
|
||||||
ShellExecute(NULL, "open", "http://desmume.sourceforge.net", NULL, NULL, SW_SHOWNORMAL);
|
ShellExecute(NULL, "open", "http://desmume.org", NULL, NULL, SW_SHOWNORMAL);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case IDM_FORUM:
|
case IDM_FORUM:
|
||||||
ShellExecute(NULL, "open", "http://forums.desmume.org/index.php", NULL, NULL, SW_SHOWNORMAL);
|
ShellExecute(NULL, "open", "http://forums.desmume.org/index.php", NULL, NULL, SW_SHOWNORMAL);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
case IDM_WIKI:
|
||||||
|
ShellExecute(NULL, "open", "http://wiki.desmume.org", NULL, NULL, SW_SHOWNORMAL);
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
case IDM_FAQ:
|
||||||
|
ShellExecute(NULL, "open", "http://wiki.desmume.org/index.php?title=Faq", NULL, NULL, SW_SHOWNORMAL);
|
||||||
|
return 0;
|
||||||
|
|
||||||
case IDM_ABOUT:
|
case IDM_ABOUT:
|
||||||
{
|
{
|
||||||
bool tpaused=false;
|
bool tpaused=false;
|
||||||
|
@ -5980,7 +5988,7 @@ DOKEYDOWN:
|
||||||
|
|
||||||
#ifndef BETA_VERSION
|
#ifndef BETA_VERSION
|
||||||
case IDM_SUBMITBUGREPORT:
|
case IDM_SUBMITBUGREPORT:
|
||||||
ShellExecute(NULL, "open", "http://sourceforge.net/tracker/?func=add&group_id=164579&atid=832291", NULL, NULL, SW_SHOWNORMAL);
|
ShellExecute(NULL, "open", "http://sourceforge.net/p/desmume/bugs/", NULL, NULL, SW_SHOWNORMAL);
|
||||||
return 0;
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -945,6 +945,8 @@
|
||||||
#define ID_CLOSE 40111
|
#define ID_CLOSE 40111
|
||||||
#define ID_STREAMFROMDISK 40111
|
#define ID_STREAMFROMDISK 40111
|
||||||
#define ID_FSNITRO_VIEW 40112
|
#define ID_FSNITRO_VIEW 40112
|
||||||
|
#define IDM_FAQ 40116
|
||||||
|
#define IDM_WIKI 40117
|
||||||
#define ID_LABEL_HK3b 44670
|
#define ID_LABEL_HK3b 44670
|
||||||
#define ID_LABEL_HK3c 44671
|
#define ID_LABEL_HK3c 44671
|
||||||
#define ID_LABEL_HK3d 44672
|
#define ID_LABEL_HK3d 44672
|
||||||
|
@ -1051,7 +1053,7 @@
|
||||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||||
#define _APS_NO_MFC 1
|
#define _APS_NO_MFC 1
|
||||||
#define _APS_NEXT_RESOURCE_VALUE 128
|
#define _APS_NEXT_RESOURCE_VALUE 128
|
||||||
#define _APS_NEXT_COMMAND_VALUE 40111
|
#define _APS_NEXT_COMMAND_VALUE 40118
|
||||||
#define _APS_NEXT_CONTROL_VALUE 1059
|
#define _APS_NEXT_CONTROL_VALUE 1059
|
||||||
#define _APS_NEXT_SYMED_VALUE 101
|
#define _APS_NEXT_SYMED_VALUE 101
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1757,6 +1757,9 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "&Website", IDM_WEBSITE
|
MENUITEM "&Website", IDM_WEBSITE
|
||||||
MENUITEM "&Forums", IDM_FORUM
|
MENUITEM "&Forums", IDM_FORUM
|
||||||
|
MENUITEM "W&iki", IDM_WIKI
|
||||||
|
MENUITEM "&FAQ", IDM_FAQ
|
||||||
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "&Submit a bug report", IDM_SUBMITBUGREPORT
|
MENUITEM "&Submit a bug report", IDM_SUBMITBUGREPORT
|
||||||
MENUITEM "&About", IDM_ABOUT
|
MENUITEM "&About", IDM_ABOUT
|
||||||
END
|
END
|
||||||
|
|
Loading…
Reference in New Issue