@@ -251,8 +251,9 @@ function zend_hash_add(ht : {$IFDEF PHP7}Pzend_array{$ELSE}PHashTable{$ENDIF}; a
251251 zend_hash_find : function(ht: { $IFDEF PHP7} Pzend_array { $ELSE} PHashTable{ $ENDIF} ; arKey: zend_pchar; nKeyLength: uint;
252252 pData: Pointer): Integer; cdecl;
253253
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;
256257
257258 zend_hash_index_find : function(ht: { $IFDEF PHP7} Pzend_array { $ELSE} PHashTable{ $ENDIF} ; h: ulong; pData: Pointer): Integer; cdecl;
258259
@@ -570,7 +571,7 @@ procedure convert_to_string(op: pzval);
570571 { $IFDEF PHP7}
571572 function(param_count:longint):longint; cdecl varargs;
572573 { $ELSE}
573- function(param_count : Integer; Args : ppzval) : integer; cdecl varargs;
574+ function(param_count : Integer; Args : ppzval): integer; cdecl varargs;
574575 { $ENDIF}
575576 { $IFDEF PHP7}
576577 ZvalGetArgs: function(Count: Integer; Args: ppzval): Integer;cdecl varargs;
@@ -1152,7 +1153,7 @@ procedure ZvalVAL(z:pzval; v:Integer; const _type:Integer = IS_LONG);
11521153 { $ELSE}
11531154 z^._type
11541155 { $ENDIF} := _type;
1155- z.value .lval := v;
1156+ z^ .value .lval := v;
11561157End ;
11571158
11581159procedure ZvalVAL (z:pzval);
@@ -2946,7 +2947,7 @@ function LoadZEND(const DllFilename: zend_ustr = PHPWin) : boolean;
29462947 ZendGetParameters := GetProcAddress(PHPLib, ' zend_get_parameters' );
29472948
29482949 // - 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 ' );
29502951 { $IFDEF PHP5}
29512952 zend_destroy_file_handle := GetProcAddress(PHPLib, ' zend_destroy_file_handle' );
29522953 { $ENDIF}
0 commit comments