You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.4 KiB

  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2006 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. /* $Id$ */
  19. #ifdef APSTUDIO_INVOKED
  20. #error This file cannot be opened from the Visual Studio IDE
  21. #endif
  22. #include "resource.h"
  23. #define APSTUDIO_READONLY_SYMBOLS
  24. #include "winres.h"
  25. #undef APSTUDIO_READONLY_SYMBOLS
  26. #include "php_version.h"
  27. #ifdef _DEBUG
  28. # define BUILD_TYPE "Debug"
  29. #else
  30. # define BUILD_TYPE "Release"
  31. #endif
  32. #include <ibase.h>
  33. #include "interbase.c"
  34. #ifdef FB_SQLDA
  35. #define CLIENT_LIB "fbclient.dll"
  36. #else
  37. #define CLIENT_LIB "gds32.dll"
  38. #endif
  39. #ifndef _MAC
  40. VS_VERSION_INFO VERSIONINFO
  41. FILEVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,0
  42. PRODUCTVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,0
  43. #ifndef _DEBUG
  44. FILEFLAGS 0x0L
  45. #else
  46. FILEFLAGS 0x1L
  47. #endif
  48. FILEFLAGSMASK 0x3fL
  49. FILEOS VOS__WINDOWS32
  50. FILETYPE VFT_DLL
  51. FILESUBTYPE VFT2_UNKNOWN
  52. BEGIN
  53. BLOCK "StringFileInfo"
  54. BEGIN
  55. BLOCK "000004b0"
  56. BEGIN
  57. VALUE "FileDescription", "PHP Interbase module\0"
  58. VALUE "FileVersion", PHP_VERSION "\0"
  59. VALUE "LegalCopyright", "Copyright � 2003 The PHP Group\0"
  60. VALUE "Build Type", BUILD_TYPE "\0"
  61. VALUE "Client Library", CLIENT_LIB "\0"
  62. VALUE "URL", "http://www.php.net\0"
  63. END
  64. END
  65. BLOCK "VarFileInfo"
  66. BEGIN
  67. VALUE "Translation", 0x0, 1200
  68. END
  69. END
  70. #endif // !_MAC