- User resource strings instead of constant strings for folder names.
[reactos.git] / reactos / lib / userenv / userenv.rc
1 /*
2 * Copyright (C) 2004 Eric Kohl
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include <windows.h>
20 #include <reactos/resource.h>
21
22 #include "resources.h"
23
24
25 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
26
27 VS_VERSION_INFO VERSIONINFO
28 FILEVERSION 5,1,2600,0
29 PRODUCTVERSION RES_UINT_PV_MAJOR,RES_UINT_PV_MINOR,RES_UINT_PV_REVISION,RES_UINT_PV_BUILD
30 FILEFLAGSMASK 0x3fL
31 #ifdef _DEBUG
32 FILEFLAGS 0x1L
33 #else
34 FILEFLAGS 0x0L
35 #endif
36 FILEOS 0x40004L
37 FILETYPE 0x2L
38 FILESUBTYPE 0x0L
39 BEGIN
40 BLOCK "StringFileInfo"
41 BEGIN
42 BLOCK "040904b0"
43 BEGIN
44 VALUE "CompanyName", RES_STR_COMPANY_NAME
45 VALUE "FileDescription", "User Environment DLL\0"
46 VALUE "FileVersion", "5.1.2600\0"
47 VALUE "InternalName", "userenv\0"
48 VALUE "LegalCopyright", RES_STR_LEGAL_COPYRIGHT
49 VALUE "OriginalFilename", "userenv.dll\0"
50 VALUE "ProductName", RES_STR_PRODUCT_NAME
51 VALUE "ProductVersion", RES_STR_PRODUCT_VERSION
52 END
53 END
54 BLOCK "VarFileInfo"
55 BEGIN
56 VALUE "Translation", 0x409, 1200
57 END
58 END
59
60
61 /*
62 * Everything specific to any language goes in one of the specific
63 * files. Note that you can and may override resources which also have
64 * a neutral version. This is to get localized bitmaps for example.
65 */
66
67 #include "En.rc"
68 #include "De.rc"