in phpAPI.pas php_error_docref converted from C to pascal like this.
php_error_docref: procedure (const docref : PAnsiChar; TSRMLS_DC : pointer; _type : integer; const Msg : PAnsiChar); cdecl;
php_error_docref does now work with this type of method. it work when change to this line below
php_error_docref: procedure (const TSRMLS_DC : pointer; _type : integer; const Msg : PAnsiChar); cdecl;
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
in phpAPI.pas php_error_docref converted from C to pascal like this.
php_error_docref: procedure (const docref : PAnsiChar; TSRMLS_DC : pointer; _type : integer; const Msg : PAnsiChar); cdecl;
php_error_docref does now work with this type of method. it work when change to this line below
php_error_docref: procedure (const TSRMLS_DC : pointer; _type : integer; const Msg : PAnsiChar); cdecl;