Prevent crash in stub of SheGetDirW.
[wine] / dlls / shell32 / shres.rc
1 /*
2  * Top level resource file for Common Dialogs
3  *
4  */
5
6 #include "winuser.h"
7 #include "winnls.h"
8 #include "shlobj.h"
9
10 /*--------------------- FIXME --------------------------
11  *
12  * These must be seperated into the language files
13  * and translated. The language 0,0 is a hack to get it
14  * loaded properly for all languages by pretending that
15  * they are neutral.
16  */
17
18 LANGUAGE 0,0
19
20 MENU_001 MENU DISCARDABLE
21 BEGIN
22         MENUITEM "Lar&ge Icons",        FCIDM_SHVIEW_BIGICON
23         MENUITEM "S&mall Icons",        FCIDM_SHVIEW_SMALLICON
24         MENUITEM "&List",               FCIDM_SHVIEW_LISTVIEW
25         MENUITEM "&Details",            FCIDM_SHVIEW_REPORTVIEW
26 END
27
28 MENU_002 MENU DISCARDABLE
29 BEGIN
30         POPUP""
31         BEGIN
32           POPUP "&View"
33           BEGIN
34             MENUITEM "Lar&ge Icons",    FCIDM_SHVIEW_BIGICON
35             MENUITEM "S&mall Icons",    FCIDM_SHVIEW_SMALLICON
36             MENUITEM "&List",           FCIDM_SHVIEW_LISTVIEW
37             MENUITEM "&Details",        FCIDM_SHVIEW_REPORTVIEW
38           END
39           MENUITEM SEPARATOR
40           POPUP "Arrange &Icons"
41           BEGIN
42             MENUITEM "&Auto Arrange",   FCIDM_SHVIEW_AUTOARRANGE
43           END
44           MENUITEM "Lin&e up Icons",    FCIDM_SHVIEW_SNAPTOGRID
45         END
46 END
47
48 SHBRSFORFOLDER_MSGBOX DIALOG 15, 40, 128, 152
49 STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
50 CAPTION "Choose a Directory:"
51 FONT 8, "Helv"
52 {
53  DEFPUSHBUTTON "OK", 1, 4, 132, 50, 12
54  PUSHBUTTON "Cancel", 2, 58, 132, 50, 12
55  CONTROL "Tree1",99,"SysTreeView32",
56         TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT |
57         WS_BORDER | WS_TABSTOP, 
58         4, 4, 120, 120
59 }
60
61 /*--------------------- END FIXME ------------------------*/
62
63 /*
64  * Everything that does not depend on language,
65  * like textless bitmaps etc, go into the
66  * neutral language. This will prevent them from
67  * being duplicated for each language.
68  */
69 #include "shell32_xx.rc"
70
71 /*
72  * Everything specific to any language goes
73  * in one of the specific files.
74  * Note that you can and may override resources
75  * which also have a neutral version. This is to
76  * get localized bitmaps for example.
77  */
78 #include "shell32_Ca.rc"
79 #include "shell32_Cs.rc"
80 #include "shell32_Da.rc"
81 #include "shell32_De.rc"
82 #include "shell32_En.rc"
83 #include "shell32_Eo.rc"
84 #include "shell32_Es.rc"
85 #include "shell32_Fi.rc"
86 #include "shell32_Fr.rc"
87 #include "shell32_Hu.rc"
88 #include "shell32_It.rc"
89 #include "shell32_Ko.rc"
90 #include "shell32_Nl.rc"
91 #include "shell32_No.rc"
92 #include "shell32_Pl.rc"
93 #include "shell32_Pt.rc"
94 #include "shell32_Ru.rc"
95 #include "shell32_Sv.rc"
96 #include "shell32_Wa.rc"