[NTOS]: Move 'buffer' to a better place (i.e. fix build).
[reactos.git] / rostests / tests / popupmenu / popupmenu.rc
1 #include <windows.h>
2 #include "resource.h"
3
4 IDM_MAINMENU MENU LOADONCALL MOVEABLE DISCARDABLE
5 {
6 POPUP "&File"
7 {
8 MENUITEM "&New\tCtrl+N", 1
9 MENUITEM "&Open\tCtrl+O", 2
10 POPUP "Open &Recent"
11 {
12 MENUITEM "&1", 11
13 MENUITEM "&2", 12
14 MENUITEM "&3", 13
15 MENUITEM "&4", 14
16 MENUITEM "&5", 15
17 MENUITEM "&6", 16
18 MENUITEM "&7", 17
19 MENUITEM "&8", 18
20 MENUITEM "&9", 19
21 }
22 MENUITEM SEPARATOR
23 MENUITEM "&Save\tCtrl+S", 3
24 MENUITEM "Save &as...", 4
25 MENUITEM SEPARATOR
26 MENUITEM "E&xit\tAlt-F4", IDM_EXIT
27 }
28 POPUP "&Edit"
29 {
30 MENUITEM "&Undo\tCtrl+Z", 20
31 MENUITEM "&Redo\tShift+Ctrl+Z", 21
32 MENUITEM SEPARATOR
33 MENUITEM "&Cut\tCtrl+X", 22
34 MENUITEM "&Copy\tCtrl+C", 23
35 MENUITEM "&Paste\tCtrl+V", 24
36 MENUITEM SEPARATOR
37 MENUITEM "Select &all", 25
38 MENUITEM "&Delete\tDel", 26
39 }
40 POPUP "&Help"
41 {
42 MENUITEM "&Help Topics\tF1", 30
43 MENUITEM SEPARATOR
44 MENUITEM "&About...", 31
45 }
46 }