| 1 |
/****************************************************************************** |
|---|
| 2 |
* $Id$ |
|---|
| 3 |
* |
|---|
| 4 |
* Project: GDAL Core |
|---|
| 5 |
* Purpose: GDAL DLL registration information. |
|---|
| 6 |
* Author: Martin Daly (Cadcorp) |
|---|
| 7 |
* |
|---|
| 8 |
* Copyright assignment provided by Martin Daly by email, "Be my guest. Fame! |
|---|
| 9 |
* At last! Best not let it go to my head, eh?" |
|---|
| 10 |
* |
|---|
| 11 |
****************************************************************************** |
|---|
| 12 |
* Copyright (c) 2005, Frank Warmerdam <warmerdam@pobox.com> |
|---|
| 13 |
* |
|---|
| 14 |
* Permission is hereby granted, free of charge, to any person obtaining a |
|---|
| 15 |
* copy of this software and associated documentation files (the "Software"), |
|---|
| 16 |
* to deal in the Software without restriction, including without limitation |
|---|
| 17 |
* the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|---|
| 18 |
* and/or sell copies of the Software, and to permit persons to whom the |
|---|
| 19 |
* Software is furnished to do so, subject to the following conditions: |
|---|
| 20 |
* |
|---|
| 21 |
* The above copyright notice and this permission notice shall be included |
|---|
| 22 |
* in all copies or substantial portions of the Software. |
|---|
| 23 |
* |
|---|
| 24 |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
|---|
| 25 |
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|---|
| 26 |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|---|
| 27 |
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|---|
| 28 |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|---|
| 29 |
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|---|
| 30 |
* DEALINGS IN THE SOFTWARE. |
|---|
| 31 |
****************************************************************************** |
|---|
| 32 |
* $Log$ |
|---|
| 33 |
* Revision 1.6 2006/03/30 15:42:55 fwarmerdam |
|---|
| 34 |
* Added explicit not on right to use. |
|---|
| 35 |
* |
|---|
| 36 |
* Revision 1.5 2006/03/28 14:49:56 fwarmerdam |
|---|
| 37 |
* updated contact info |
|---|
| 38 |
* |
|---|
| 39 |
*/ |
|---|
| 40 |
|
|---|
| 41 |
#include "winres.h" |
|---|
| 42 |
|
|---|
| 43 |
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU) |
|---|
| 44 |
#ifdef _WIN32 |
|---|
| 45 |
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL |
|---|
| 46 |
#pragma code_page(1252) |
|---|
| 47 |
#endif //_WIN32 |
|---|
| 48 |
|
|---|
| 49 |
#include "gdal.h" |
|---|
| 50 |
|
|---|
| 51 |
#ifndef _MAC |
|---|
| 52 |
|
|---|
| 53 |
///////////////////////////////////////////////////////////////////////////// |
|---|
| 54 |
// |
|---|
| 55 |
// Version |
|---|
| 56 |
// |
|---|
| 57 |
|
|---|
| 58 |
VS_VERSION_INFO VERSIONINFO |
|---|
| 59 |
FILEVERSION GDAL_VERSION_MAJOR,GDAL_VERSION_MINOR,GDAL_VERSION_REV,GDAL_VERSION_BUILD |
|---|
| 60 |
PRODUCTVERSION GDAL_VERSION_MAJOR,GDAL_VERSION_MINOR,GDAL_VERSION_REV,GDAL_VERSION_BUILD |
|---|
| 61 |
FILEFLAGSMASK 0x3fL |
|---|
| 62 |
#ifdef _DEBUG |
|---|
| 63 |
FILEFLAGS 0x1L |
|---|
| 64 |
#else |
|---|
| 65 |
FILEFLAGS 0x0L |
|---|
| 66 |
#endif |
|---|
| 67 |
FILEOS 0x4L |
|---|
| 68 |
FILETYPE 0x2L |
|---|
| 69 |
FILESUBTYPE 0x0L |
|---|
| 70 |
BEGIN |
|---|
| 71 |
BLOCK "StringFileInfo" |
|---|
| 72 |
BEGIN |
|---|
| 73 |
BLOCK "000004b0" |
|---|
| 74 |
BEGIN |
|---|
| 75 |
VALUE "CompanyName", "Frank Warmerdam\0" |
|---|
| 76 |
VALUE "FileDescription", "Geospatial Data Abstraction Library\0" |
|---|
| 77 |
VALUE "FileVersion", GDAL_RELEASE_NAME "\0" |
|---|
| 78 |
VALUE "InternalName", "GDAL\0" |
|---|
| 79 |
VALUE "LegalCopyright", "Copyright (c) 1998, 2005 Frank Warmerdam" |
|---|
| 80 |
VALUE "ProductName", "GDAL\0" |
|---|
| 81 |
VALUE "ProductVersion", GDAL_RELEASE_NAME "\0" |
|---|
| 82 |
VALUE "WebPage", "http://www.gdal.org/\0" |
|---|
| 83 |
END |
|---|
| 84 |
END |
|---|
| 85 |
BLOCK "VarFileInfo" |
|---|
| 86 |
BEGIN |
|---|
| 87 |
VALUE "Translation", 0x0, 1200 |
|---|
| 88 |
END |
|---|
| 89 |
END |
|---|
| 90 |
|
|---|
| 91 |
#endif // !_MAC |
|---|
| 92 |
|
|---|
| 93 |
#endif // Neutral resources |
|---|