| 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 | */
|
|---|
| 15 | LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|---|
| 16 |
|
|---|
| 17 | 0 CURSOR nodrop.cur
|
|---|
| 18 | 1 CURSOR drag_move.cur
|
|---|
| 19 | 2 CURSOR drag_copy.cur
|
|---|
| 20 | 3 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 |
|
|---|
| 36 | 1 VERSIONINFO
|
|---|
| 37 | FILEVERSION ODIN_FILEVERSION
|
|---|
| 38 | PRODUCTVERSION ODIN_PRODUCTVERSION
|
|---|
| 39 | FILEFLAGSMASK 0x3fL
|
|---|
| 40 | FILEFLAGS 0xaL
|
|---|
| 41 | FILEOS 0x10001L
|
|---|
| 42 | FILETYPE 0x1L
|
|---|
| 43 | FILESUBTYPE 0x0L
|
|---|
| 44 | BEGIN
|
|---|
| 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
|
|---|
| 65 | END
|
|---|
| 66 |
|
|---|