Annotation of embedaddon/php/ext/interbase/interbase.rc, revision 1.1.1.1
1.1 misho 1: /*
2: +----------------------------------------------------------------------+
3: | PHP Version 5 |
4: +----------------------------------------------------------------------+
5: | Copyright (c) 1997-2007 The PHP Group |
6: +----------------------------------------------------------------------+
7: | This source file is subject to version 3.01 of the PHP license, |
8: | that is bundled with this package in the file LICENSE, and is |
9: | available through the world-wide-web at the following url: |
10: | http://www.php.net/license/3_01.txt |
11: | If you did not receive a copy of the PHP license and are unable to |
12: | obtain it through the world-wide-web, please send a note to |
13: | license@php.net so we can mail you a copy immediately. |
14: +----------------------------------------------------------------------+
15: | Author: Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl> |
16: +----------------------------------------------------------------------+
17: */
18:
19: /* $Id: interbase.rc 242949 2007-09-26 15:44:16Z cvs2svn $ */
20:
21: #ifdef APSTUDIO_INVOKED
22: #error This file cannot be opened from the Visual Studio IDE
23: #endif
24:
25: #include "resource.h"
26:
27: #define APSTUDIO_READONLY_SYMBOLS
28: #include "winres.h"
29: #undef APSTUDIO_READONLY_SYMBOLS
30:
31: #include "php_version.h"
32:
33: #ifdef _DEBUG
34: # define BUILD_TYPE "Debug"
35: #else
36: # define BUILD_TYPE "Release"
37: #endif
38:
39: #include <ibase.h>
40: #include "interbase.c"
41:
42: #ifdef FB_SQLDA
43: #define CLIENT_LIB "fbclient.dll"
44: #else
45: #define CLIENT_LIB "gds32.dll"
46: #endif
47:
48: #ifndef _MAC
49:
50: VS_VERSION_INFO VERSIONINFO
51: FILEVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,0
52: PRODUCTVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,0
53: #ifndef _DEBUG
54: FILEFLAGS 0x0L
55: #else
56: FILEFLAGS 0x1L
57: #endif
58: FILEFLAGSMASK 0x3fL
59: FILEOS VOS__WINDOWS32
60: FILETYPE VFT_DLL
61: FILESUBTYPE VFT2_UNKNOWN
62: BEGIN
63: BLOCK "StringFileInfo"
64: BEGIN
65: BLOCK "000004b0"
66: BEGIN
67: VALUE "FileDescription", "PHP Interbase module\0"
68: VALUE "FileVersion", PHP_VERSION "\0"
69: VALUE "LegalCopyright", "Copyright © 2003 The PHP Group\0"
70: VALUE "Build Type", BUILD_TYPE "\0"
71: VALUE "Client Library", CLIENT_LIB "\0"
72: VALUE "URL", "http://www.php.net\0"
73: END
74: END
75: BLOCK "VarFileInfo"
76: BEGIN
77: VALUE "Translation", 0x0, 1200
78: END
79: END
80:
81: #endif // !_MAC
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>