File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 5555 php := TpsvPHP.Create(nil );
5656 if ParamCount = 1 then
5757 begin
58- php.FileName := ParamStr(1 );
58+ php.FileName := zend_ustr( ParamStr(1 ) );
5959 write(php.Execute);
6060 end
6161 else
Original file line number Diff line number Diff line change 88 <AppType>Console</AppType>
99 <FrameworkType>None</FrameworkType>
1010 <ProjectVersion>18.2</ProjectVersion>
11- <Platform Condition="'$(Platform)'==''">Win64 </Platform>
11+ <Platform Condition="'$(Platform)'==''">Win32 </Platform>
1212 </PropertyGroup>
1313 <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
1414 <Base>true</Base>
Original file line number Diff line number Diff line change @@ -1233,9 +1233,13 @@ Tzend_module_entry = record
12331233 { $IFDEF PHP5}
12341234 { $IFDEF PHP520}
12351235 globals_size : size_t;
1236+ { $IFDEF PHP540}
1237+ globals_ptr : pointer;
1238+ { $ELSE}
12361239 globals_id_ptr : pointer;
1237- globals_ctor : pointer;
1238- globals_dtor : pointer;
1240+ { $ENDIF}
1241+ globals_ctor : procedure (global:pointer);cdecl;
1242+ globals_dtor : procedure (global:pointer);cdecl;
12391243 { $ENDIF}
12401244 { $ENDIF}
12411245
@@ -1250,7 +1254,7 @@ Tzend_module_entry = record
12501254 global_id: integer;
12511255 { $ENDIF}
12521256
1253- module_started: integer ;
1257+ module_started: longint ;
12541258 _type: byte;
12551259 handle: pointer;
12561260 module_number: longint;
You can’t perform that action at this time.
0 commit comments