Skip to content

Commit

Permalink
Zero-terminate strings
Browse files Browse the repository at this point in the history
Add fileflags for DEBUG build
  • Loading branch information
Ard Biesheuvel committed Sep 7, 2003
1 parent 6c0e21f commit 366a4b7
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions ext/interbase/interbase.rc
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,26 @@
VS_VERSION_INFO VERSIONINFO
FILEVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,0
PRODUCTVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,0
#ifndef _DEBUG
FILEFLAGS 0x0L
#else
FILEFLAGS 0x1L
#endif
FILEFLAGSMASK 0x3fL
FILEOS 0x40004L
FILETYPE 0x2L
FILESUBTYPE 0x0L
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "000004b0"
BEGIN
VALUE "FileDescription", "PHP Interbase module"
VALUE "FileVersion", PHP_VERSION
VALUE "File Revision", FILE_REVISION
VALUE "LegalCopyright", "1997-2003 The PHP Group"
VALUE "ProductName", "PHP"
VALUE "ProductVersion", PHP_VERSION
VALUE "Build Type", BUILD_TYPE
VALUE "FileDescription", "PHP Interbase module\0"
VALUE "FileVersion", PHP_VERSION "\0"
VALUE "File Revision", FILE_REVISION "\0"
VALUE "LegalCopyright", "Copyright � 2003 The PHP Group\0"
VALUE "Build Type", BUILD_TYPE "\0"
VALUE "URL", "http://www.php.net\0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 366a4b7

Please sign in to comment.