forked from crispy-computing-machine/Winbinder-PHP8
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphp_winbinder.rc
More file actions
84 lines (69 loc) · 2.34 KB
/
php_winbinder.rc
File metadata and controls
84 lines (69 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*******************************************************************************
WINBINDER - The native Windows binding for PHP
Copyright Hypervisual - see LICENSE.TXT for details
Author: Rubem Pechansky (https://github.com/crispy-computing-machine/Winbinder)
rc file for winbinder
*******************************************************************************/
/* This is from rc template:
* $Id: template.rc,v 1.7 2005/08/03 14:08:58 sniper Exp $
* Do not edit with MSVC */
#ifdef APSTUDIO_INVOKED
# error dont edit with MSVC
#endif
#ifdef _MSC_VER
# include <winres.h>
#endif
#define FILE_DESCRIPTION "WinBinder extension for PHP 8.5."
#define PRODUCT_NAME "WinBinder"
#define P_VERSION "8.5"
#define FILE_NAME "php_winbinder.dll"
//#include "winres.h"
#include "wb/wb_version.h"
#include "winver.h" // Rubem feb 16, 2006
#include "winnt.h" // Rubem feb 16, 2006
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#define XSTRVER4(maj, min, rel, build) #maj "." #min "." #rel "." #build
#define XSTRVER3(maj, min, rel) #maj "." #min "." #rel
#define STRVER4(maj, min, rel, build) XSTRVER4(maj, min, rel, build)
#define STRVER3(maj, min, rel) XSTRVER3(maj, min, rel)
// Version
VS_VERSION_INFO VERSIONINFO
FILEVERSION WB_MAJ,WB_MIN,WB_REL
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "Built with MSVC\0"
VALUE "CompanyName", "Hypervisual\0"
VALUE "FileDescription", FILE_DESCRIPTION "\0"
VALUE "FileVersion", STRVER3(WB_MAJ,WB_MIN,WB_REL) "\0"
VALUE "InternalName", WINBINDER_VERSION "\0"
VALUE "LegalCopyright", "Copyright 1997-2010 Rubem Pechansky\0"
VALUE "LegalTrademarks", "PHP " P_VERSION "\0"
VALUE "OriginalFilename", FILE_NAME "\0"
VALUE "PrivateBuild", "WinBinder\0"
VALUE "ProductName", PRODUCT_NAME "\0"
VALUE "ProductVersion", STRVER3(WB_MAJ,WB_MIN,WB_REL)
VALUE "SpecialBuild", "Built by Andrew Fitzgerald\0"
VALUE "URL", "http://winbinder.org"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#ifdef MC_INCLUDE
#include MC_INCLUDE
#endif