@@ -251,8 +251,9 @@ function zend_hash_add(ht : {$IFDEF PHP7}Pzend_array{$ELSE}PHashTable{$ENDIF}; a
251
251
zend_hash_find : function(ht: { $IFDEF PHP7} Pzend_array { $ELSE} PHashTable{ $ENDIF} ; arKey: zend_pchar; nKeyLength: uint;
252
252
pData: Pointer): Integer; cdecl;
253
253
254
- zend_hash_quick_find : function(ht: { $IFDEF PHP7} Pzend_array { $ELSE} PHashTable{ $ENDIF} ; arKey: zend_pchar;
255
- nKeyLength: uint; h: ulong; pData: Pointer): Integer; cdecl;
254
+ zend_hash_quick_find :
255
+ function(ht: { $IFDEF PHP7} Pzend_array { $ELSE} PHashTable{ $ENDIF} ; arKey: zend_pchar;
256
+ nKeyLength: uint; h: ulong; out pData: ppzval): Integer; cdecl;
256
257
257
258
zend_hash_index_find : function(ht: { $IFDEF PHP7} Pzend_array { $ELSE} PHashTable{ $ENDIF} ; h: ulong; pData: Pointer): Integer; cdecl;
258
259
@@ -570,7 +571,7 @@ procedure convert_to_string(op: pzval);
570
571
{ $IFDEF PHP7}
571
572
function(param_count:longint):longint; cdecl varargs;
572
573
{ $ELSE}
573
- function(param_count : Integer; Args : ppzval) : integer; cdecl varargs;
574
+ function(param_count : Integer; Args : ppzval): integer; cdecl varargs;
574
575
{ $ENDIF}
575
576
{ $IFDEF PHP7}
576
577
ZvalGetArgs: function(Count: Integer; Args: ppzval): Integer;cdecl varargs;
@@ -1152,7 +1153,7 @@ procedure ZvalVAL(z:pzval; v:Integer; const _type:Integer = IS_LONG);
1152
1153
{ $ELSE}
1153
1154
z^._type
1154
1155
{ $ENDIF} := _type;
1155
- z.value .lval := v;
1156
+ z^ .value .lval := v;
1156
1157
End ;
1157
1158
1158
1159
procedure ZvalVAL (z:pzval);
@@ -2946,7 +2947,7 @@ function LoadZEND(const DllFilename: zend_ustr = PHPWin) : boolean;
2946
2947
ZendGetParameters := GetProcAddress(PHPLib, ' zend_get_parameters' );
2947
2948
2948
2949
// - zend_get_parameters_ex (native call)
2949
- zend_get_params_ex := GetProcAddress(PHPLib, ' zend_get_params_ex ' );
2950
+ zend_get_params_ex := GetProcAddress(PHPLib, ' zend_get_parameters_ex ' );
2950
2951
{ $IFDEF PHP5}
2951
2952
zend_destroy_file_handle := GetProcAddress(PHPLib, ' zend_destroy_file_handle' );
2952
2953
{ $ENDIF}
0 commit comments