| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Copyright 2008-2009 The Eraser Project |
|---|
| 4 | * Original Author: Joel Low <lowjoel@users.sourceforge.net> |
|---|
| 5 | * Modified By: |
|---|
| 6 | * |
|---|
| 7 | * This file is part of Eraser. |
|---|
| 8 | * |
|---|
| 9 | * Eraser is free software: you can redistribute it and/or modify it under the |
|---|
| 10 | * terms of the GNU General Public License as published by the Free Software |
|---|
| 11 | * Foundation, either version 3 of the License, or (at your option) any later |
|---|
| 12 | * version. |
|---|
| 13 | * |
|---|
| 14 | * Eraser is distributed in the hope that it will be useful, but WITHOUT ANY |
|---|
| 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
|---|
| 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * A copy of the GNU General Public License can be found at |
|---|
| 19 | * <http://www.gnu.org/licenses/>. |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | #include <windows.h> |
|---|
| 23 | #include "../Version.rc" |
|---|
| 24 | |
|---|
| 25 | VS_VERSION_INFO VERSIONINFO |
|---|
| 26 | FILEVERSION ERASER_FILE_VERSION |
|---|
| 27 | PRODUCTVERSION ERASER_PRODUCT_VERSION |
|---|
| 28 | FILEFLAGSMASK 0x17L |
|---|
| 29 | #ifdef _DEBUG |
|---|
| 30 | FILEFLAGS 0x1L |
|---|
| 31 | #else |
|---|
| 32 | FILEFLAGS 0x0L |
|---|
| 33 | #endif |
|---|
| 34 | FILEOS 0x4L |
|---|
| 35 | FILETYPE 0x2L |
|---|
| 36 | FILESUBTYPE 0x0L |
|---|
| 37 | BEGIN |
|---|
| 38 | BLOCK "StringFileInfo" |
|---|
| 39 | BEGIN |
|---|
| 40 | BLOCK "480904b0" |
|---|
| 41 | BEGIN |
|---|
| 42 | VALUE "CompanyName", "The Eraser Project" |
|---|
| 43 | VALUE "FileDescription", "Eraser File Handle Unlocker" |
|---|
| 44 | VALUE "FileVersion", ERASER_STRING_FILE_VERSION |
|---|
| 45 | VALUE "InternalName", "Eraser.Util.Unlocker.dll" |
|---|
| 46 | VALUE "LegalCopyright", "Copyright (C) 2009 The Eraser Project" |
|---|
| 47 | VALUE "OriginalFilename", "Eraser.Util.Unlocker" |
|---|
| 48 | VALUE "ProductName", "Eraser" |
|---|
| 49 | VALUE "ProductVersion", ERASER_STRING_PRODUCT_VERSION |
|---|
| 50 | END |
|---|
| 51 | END |
|---|
| 52 | BLOCK "VarFileInfo" |
|---|
| 53 | BEGIN |
|---|
| 54 | VALUE "Translation", 0x4809, 1200 |
|---|
| 55 | END |
|---|
| 56 | END |
|---|