source: trunk/src/ole32/ole32rsrc.orc@ 22011

Last change on this file since 22011 was 10432, checked in by bird, 22 years ago

#682: Drag & Drop fixes. Some Wine resync.

File size: 1.6 KB
Line 
1/* $Id: ole32rsrc.orc,v 1.3 2004-01-30 22:11:41 bird Exp $ */
2
3#include "windef.h"
4#include "winuser.h"
5#include "winnls.h"
6#include "odinrsrc.h"
7
8
9/*
10 * Everything that does not depend on language,
11 * like textless bitmaps etc, go into the
12 * neutral language. This will prevent them from
13 * being duplicated for each language.
14 */
15LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
16
170 CURSOR nodrop.cur
181 CURSOR drag_move.cur
192 CURSOR drag_copy.cur
203 CURSOR drag_link.cur
21
22
23/*
24 * Everything specific to any language goes
25 * in one of the specific files.
26 * Note that you can and may override resources
27 * which also have a neutral version. This is to
28 * get localized bitmaps for example.
29 */
30
31/////////////////////////////////////////////////////////////////////////////
32//
33// Version (based on NT 4 SP3)
34//
35
361 VERSIONINFO
37 FILEVERSION ODIN_FILEVERSION
38 PRODUCTVERSION ODIN_PRODUCTVERSION
39 FILEFLAGSMASK 0x3fL
40 FILEFLAGS 0xaL
41 FILEOS 0x10001L
42 FILETYPE 0x1L
43 FILESUBTYPE 0x0L
44BEGIN
45 BLOCK "StringFileInfo"
46 BEGIN
47 BLOCK "040904E4"
48 BEGIN
49 VALUE "Comments", "Odin32 System Dll\0"
50 VALUE "CompanyName", "Odin Team\0"
51 VALUE "FileDescription", "OLE32 System dll\0"
52 VALUE "FileVersion", "4.00\0"
53 VALUE "InternalName", "OLE32\0"
54 VALUE "LegalCopyright", "Copyright (C) 1999-2000\0"
55 VALUE "LegalTrademarks", "\0"
56 VALUE "OriginalFilename", "OLE32.DLL\0"
57 VALUE "ProductName", "Odin32 - OLE32\0"
58 VALUE "ProductVersion", "4.00\0"
59 END
60 END
61 BLOCK "VarFileInfo"
62 BEGIN
63 VALUE "Translation", 0x409, 0x04E4
64 END
65END
66
Note: See TracBrowser for help on using the repository browser.