Fix description of COM error constants

Besides adding docs for the missing `DISP_E_BADINDEX`, we also document that
the values are positive integers on x64 as of PHP 7.0.0.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@349163 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2020-02-07 17:51:35 +00:00
parent fda2507473
commit cdf5498ad7

View file

@ -569,7 +569,7 @@
<entry>
A return error that indicates a divide by zero error.
</entry>
<entry></entry>
<entry>As of PHP 7.0.0, the value is <literal>2147614738</literal> on x64.</entry>
</row>
<row xml:id="constant.disp-e-overflow">
<entry>
@ -581,7 +581,18 @@
An error that indicates that a value could not be coerced to
its expected representation.
</entry>
<entry></entry>
<entry>As of PHP 7.0.0, the value is <literal>2147614730</literal> on x64.</entry>
</row>
<row xml:id="constant.disp-e-badindex">
<entry>
<constant>DISP_E_BADINDEX</constant>
(<type>integer</type>)
</entry>
<entry>-2147352565</entry>
<entry>
An error that indicates that an array index does not exist.
</entry>
<entry>As of PHP 7.0.0, the value is <literal>2147614731</literal> on x64.</entry>
</row>
<row xml:id="constant.mk-e-unavailable">
<entry>
@ -593,7 +604,7 @@
iMoniker COM status code, return on errors where the function call
failed due to unavailability.
</entry>
<entry></entry>
<entry>As of PHP 7.0.0, the value is <literal>2147746275</literal> on x64.</entry>
</row>
</tbody>
</tgroup>