| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Copyright 2008 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 "resource.h" |
|---|
| 24 | |
|---|
| 25 | BOOTSTRAPPER_ICON ICON "..\..\Resources\EraserSetup.ico" |
|---|
| 26 | |
|---|
| 27 | VS_VERSION_INFO VERSIONINFO |
|---|
| 28 | FILEVERSION 6,0,1,649 |
|---|
| 29 | PRODUCTVERSION 6,0,1,649 |
|---|
| 30 | FILEFLAGSMASK 0x17L |
|---|
| 31 | #ifdef _DEBUG |
|---|
| 32 | FILEFLAGS 0x1L |
|---|
| 33 | #else |
|---|
| 34 | FILEFLAGS 0x0L |
|---|
| 35 | #endif |
|---|
| 36 | FILEOS 0x4L |
|---|
| 37 | FILETYPE 0x1L |
|---|
| 38 | FILESUBTYPE 0x0L |
|---|
| 39 | BEGIN |
|---|
| 40 | BLOCK "StringFileInfo" |
|---|
| 41 | BEGIN |
|---|
| 42 | BLOCK "040904b0" |
|---|
| 43 | BEGIN |
|---|
| 44 | VALUE "Comments", "Eraser Setup Bootstrapper" |
|---|
| 45 | VALUE "CompanyName", "The Eraser Project" |
|---|
| 46 | VALUE "FileDescription", "Eraser Setup Bootstrapper" |
|---|
| 47 | VALUE "FileVersion", "6.0.1.649" |
|---|
| 48 | VALUE "InternalName", "RemoteFile" |
|---|
| 49 | VALUE "LegalCopyright", "Copyright © 2007 Joel Low" |
|---|
| 50 | VALUE "OriginalFilename", "RemoteFile" |
|---|
| 51 | VALUE "ProductVersion", "6.0.1.649" |
|---|
| 52 | END |
|---|
| 53 | END |
|---|
| 54 | BLOCK "VarFileInfo" |
|---|
| 55 | BEGIN |
|---|
| 56 | VALUE "Translation", 0x409, 1200 |
|---|
| 57 | END |
|---|
| 58 | END |
|---|
| 59 | |
|---|