mirror of
https://github.com/php/doc-es.git
synced 2026-03-25 07:52:21 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@334774 c90b9560-bf6c-de11-be94-00142212c4b1
624 lines
16 KiB
XML
624 lines
16 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 14af302c9c0e561fa6f9cdd956268758ba9a89c5 Maintainer: chuso Status: ready -->
|
|
<chapter xml:id="com.constants" xmlns="http://docbook.org/ns/docbook">
|
|
&reftitle.constants;
|
|
&extension.constants;
|
|
<table>
|
|
<title>Constantes COM</title>
|
|
<tgroup cols="3">
|
|
<thead>
|
|
<row>
|
|
<entry>Constante</entry>
|
|
<entry>Valor</entry>
|
|
<entry>Descripción</entry>
|
|
<entry>Observaciones</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row xml:id="constant.clsctx-inproc-server">
|
|
<entry>
|
|
<constant>CLSCTX_INPROC_SERVER</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>1</entry>
|
|
<entry>
|
|
El código que crea y administra objetos de esta clase es
|
|
una DLL que se ejecuta en el mismo proceso que el llamador a la
|
|
función especificando el contexto de la clase.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.clsctx-inproc-handler">
|
|
<entry>
|
|
<constant>CLSCTX_INPROC_HANDLER</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>2</entry>
|
|
<entry>
|
|
El código que administra objetos de esta clase es un gestor
|
|
"en-proceso". Es una DLL que se ejecuta en el proceso cliente e
|
|
implementa estructuras del lado del cliente de esta clase cuando a las instancias
|
|
de la clase se acceden de forma remota.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.clsctx-local-server">
|
|
<entry>
|
|
<constant>CLSCTX_LOCAL_SERVER</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>4</entry>
|
|
<entry>
|
|
El código EXE que crea y administra objetos de esta clase se ejecuta en
|
|
la misma máquina, pero se carga en un espacio de proceso distinto.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.clsctx-remote-server">
|
|
<entry>
|
|
<constant>CLSCTX_REMOTE_SERVER</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>16</entry>
|
|
<entry>
|
|
Un contexto remoto. El código que crea y administra objetos de esta
|
|
clase se ejecuta en un ordenador diferente.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.clsctx-server">
|
|
<entry>
|
|
<constant>CLSCTX_SERVER</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>21</entry>
|
|
<entry>
|
|
Indica código de servidor, si es "en-proceso", local, o remoto. Esta definición
|
|
usa el operador OR con <constant>CLSCTX_INPROC_SERVER</constant>,
|
|
<constant>CLSCTX_LOCAL_SERVER</constant>, y
|
|
<constant>CLSCTX_REMOTE_SERVER</constant>.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.clsctx-all">
|
|
<entry>
|
|
<constant>CLSCTX_ALL</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>23</entry>
|
|
<entry>
|
|
Indica todos los contextos de clase. Esta definición usa el operador OR con
|
|
<constant>CLSCTX_INPROC_HANDLER</constant> y
|
|
<constant>CLSCTX_SERVER</constant>.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-null">
|
|
<entry>
|
|
<constant>VT_NULL</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>1</entry>
|
|
<entry>
|
|
Referencia a un puntero NULL.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-empty">
|
|
<entry>
|
|
<constant>VT_EMPTY</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>0</entry>
|
|
<entry>
|
|
Una propiedad con un indicador de tipo <constant>VT_EMPTY</constant> no tiene
|
|
información asociada a ella; es decir, el tamaño del valor es cero.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-ui1">
|
|
<entry>
|
|
<constant>VT_UI1</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>17</entry>
|
|
<entry>
|
|
Integer sin signo de 1 byte.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-i2">
|
|
<entry>
|
|
<constant>VT_I2</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>2</entry>
|
|
<entry>
|
|
Dos bytes que representan un integer con signo de 2 bytes.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-i4">
|
|
<entry>
|
|
<constant>VT_I4</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>3</entry>
|
|
<entry>
|
|
Valor de tipo integer con signo de 4 bytes.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-r4">
|
|
<entry>
|
|
<constant>VT_R4</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>4</entry>
|
|
<entry>
|
|
Valor de coma flotante IEEE de 32 bits.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-r8">
|
|
<entry>
|
|
<constant>VT_R8</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>5</entry>
|
|
<entry>
|
|
Valor de coma flotante IEEE de 64 bits.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-bool">
|
|
<entry>
|
|
<constant>VT_BOOL</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>11</entry>
|
|
<entry>
|
|
Valor boolean.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-error">
|
|
<entry>
|
|
<constant>VT_ERROR</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>10</entry>
|
|
<entry>
|
|
Código de error; contienen el código de estado asociado con el
|
|
error.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-cy">
|
|
<entry>
|
|
<constant>VT_CY</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>6</entry>
|
|
<entry>
|
|
Integer de complemento a dos de 8 bytes (escalado por 10,000).
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-date">
|
|
<entry>
|
|
<constant>VT_DATE</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>7</entry>
|
|
<entry>
|
|
Un número de coma flotante de 64 bits que representa el número de días
|
|
(no segundos) desde el 31 de diciembre de 1899. Por ejemplo,
|
|
<literal>January 1, 1900</literal>, es 2.0, <literal>January 2, 1900</literal>,
|
|
es 3.0, y así sucesivamente). Se almacena con la misma representación que
|
|
<constant>VT_R8</constant>.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-bstr">
|
|
<entry>
|
|
<constant>VT_BSTR</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>8</entry>
|
|
<entry>
|
|
Puntero a una cadena Unicode finalizada en null.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-decimal">
|
|
<entry>
|
|
<constant>VT_DECIMAL</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>14</entry>
|
|
<entry>
|
|
Una estructura decimal.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-unknown">
|
|
<entry>
|
|
<constant>VT_UNKNOWN</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>13</entry>
|
|
<entry>
|
|
Un puntero a un objeto que implementa al interfaz IUnknown.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-dispatch">
|
|
<entry>
|
|
<constant>VT_DISPATCH</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>9</entry>
|
|
<entry>
|
|
Se especificó un puntero a un puntero a un objeto.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-variant">
|
|
<entry>
|
|
<constant>VT_VARIANT</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>12</entry>
|
|
<entry>
|
|
Un indicador de tipo seguido del valor correspondiente.
|
|
<constant>VT_VARIANT</constant> sólo se puede usar con
|
|
<constant>VT_BYREF</constant>.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-i1">
|
|
<entry>
|
|
<constant>VT_I1</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>16</entry>
|
|
<entry>
|
|
Integer con signo de 1 byte.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-ui2">
|
|
<entry>
|
|
<constant>VT_UI2</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>18</entry>
|
|
<entry>
|
|
Integer sin signo de 2 bytes.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-ui4">
|
|
<entry>
|
|
<constant>VT_UI4</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>19</entry>
|
|
<entry>
|
|
Integer sin signo de 4 bytes.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-int">
|
|
<entry>
|
|
<constant>VT_INT</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>22</entry>
|
|
<entry>
|
|
Valor integer con signo de 4 bytes (equivalente a
|
|
<constant>VT_I4</constant>).
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-uint">
|
|
<entry>
|
|
<constant>VT_UINT</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>23</entry>
|
|
<entry>
|
|
Valor integer sin signo de 4 bytes (equivalente a
|
|
<constant>VT_UI4</constant>).
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-array">
|
|
<entry>
|
|
<constant>VT_ARRAY</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>8192</entry>
|
|
<entry>
|
|
Si el indicador de tipo se combina con
|
|
<constant>VT_ARRAY</constant> mediante un operador OR, el valor es un puntero a un
|
|
<literal>SAFEARRAY</literal>. <constant>VT_ARRAY</constant>
|
|
puede usar OR con los siguientes tipos de datos: <constant>VT_I1</constant>,
|
|
<constant>VT_UI1</constant>, <constant>VT_I2</constant>, <constant>VT_UI2</constant>,
|
|
<constant>VT_I4</constant>, <constant>VT_UI4</constant>, <constant>VT_INT</constant>,
|
|
<constant>VT_UINT</constant>, <constant>VT_R4</constant>, <constant>VT_R8</constant>,
|
|
<constant>VT_BOOL</constant>, <constant>VT_DECIMAL</constant>, <constant>VT_ERROR</constant>,
|
|
<constant>VT_CY</constant>, <constant>VT_DATE</constant>, <constant>VT_BSTR</constant>,
|
|
<constant>VT_DISPATCH</constant>, <constant>VT_UNKNOWN</constant> y
|
|
<constant>VT_VARIANT</constant>.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.vt-byref">
|
|
<entry>
|
|
<constant>VT_BYREF</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>16384</entry>
|
|
<entry>
|
|
Si el indicador de tipo se combina con <constant>VT_BYREF</constant>
|
|
mediante un operador OR, el valor es una referencia. Los tipos de referencias son
|
|
interpretados como una referencia a datos, similar al tipo de referencia en
|
|
C++.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.cp-acp">
|
|
<entry>
|
|
<constant>CP_ACP</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>0</entry>
|
|
<entry>
|
|
Por defecto la página de código de ANSI.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.cp-maccp">
|
|
<entry>
|
|
<constant>CP_MACCP</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>2</entry>
|
|
<entry>
|
|
Página de código de Macintosh.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.cp-oemcp">
|
|
<entry>
|
|
<constant>CP_OEMCP</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>1</entry>
|
|
<entry>
|
|
Por defecto la página de código de OEM.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.cp-utf7">
|
|
<entry>
|
|
<constant>CP_UTF7</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>65000</entry>
|
|
<entry>
|
|
Unicode (UTF-7).
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.cp-utf8">
|
|
<entry>
|
|
<constant>CP_UTF8</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>65001</entry>
|
|
<entry>
|
|
Unicode (UTF-8).
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.cp-symbol">
|
|
<entry>
|
|
<constant>CP_SYMBOL</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>42</entry>
|
|
<entry>
|
|
Traducciones de <literal>SYMBOL</literal>.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.cp-thread-acp">
|
|
<entry>
|
|
<constant>CP_THREAD_ACP</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>3</entry>
|
|
<entry>
|
|
Página de código de ANSI del hilo actual
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.varcmp-lt">
|
|
<entry>
|
|
<constant>VARCMP_LT</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>0</entry>
|
|
<entry>
|
|
El <literal>bstr</literal> izquierdo es menor que el
|
|
<literal>bstr</literal> derecho.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.varcmp-eq">
|
|
<entry>
|
|
<constant>VARCMP_EQ</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>1</entry>
|
|
<entry>
|
|
Los dos parámetros son iguales.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.varcmp-gt">
|
|
<entry>
|
|
<constant>VARCMP_GT</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>2</entry>
|
|
<entry>
|
|
El <literal>bstr</literal> izquierdo es mayor que el
|
|
<literal>bstr</literal> derecho.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.varcmp-null">
|
|
<entry>
|
|
<constant>VARCMP_NULL</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>3</entry>
|
|
<entry>
|
|
Ambas expresiones son NULL.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.norm-ignorecase">
|
|
<entry>
|
|
<constant>NORM_IGNORECASE</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>1</entry>
|
|
<entry>
|
|
Ignorar la sensibilidad a mayúsculas-minúsculas.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.norm-ignorenonspace">
|
|
<entry>
|
|
<constant>NORM_IGNORENONSPACE</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>2</entry>
|
|
<entry>
|
|
Ignorar los caracters que no son espacios.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.norm-ignoresymbols">
|
|
<entry>
|
|
<constant>NORM_IGNORESYMBOLS</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>4</entry>
|
|
<entry>
|
|
Ignorar los símbolos.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.norm-ignorewidth">
|
|
<entry>
|
|
<constant>NORM_IGNOREWIDTH</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>131072</entry>
|
|
<entry>
|
|
Ignorar el ancho de cadena.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.norm-ignorekanatype">
|
|
<entry>
|
|
<constant>NORM_IGNOREKANATYPE</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>65536</entry>
|
|
<entry>
|
|
Ignorar el tipo Kana.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.norm-ignorekashida">
|
|
<entry>
|
|
<constant>NORM_IGNOREKASHIDA</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>262144</entry>
|
|
<entry>
|
|
Ignorar caractares kashida árabes.
|
|
</entry>
|
|
<entry>
|
|
La disponibilidad depende de la biblioteca subyacente.
|
|
</entry>
|
|
</row>
|
|
<row xml:id="constant.disp-e-divbyzero">
|
|
<entry>
|
|
<constant>DISP_E_DIVBYZERO</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>-2147352558</entry>
|
|
<entry>
|
|
Un error devuelto que indica un error de división por cero.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.disp-e-overflow">
|
|
<entry>
|
|
<constant>DISP_E_OVERFLOW</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>-2147352566</entry>
|
|
<entry>
|
|
Un error que indica que un valor no puede ser coaccionado a su
|
|
representación esperada.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
<row xml:id="constant.mk-e-unavailable">
|
|
<entry>
|
|
<constant>MK_E_UNAVAILABLE</constant>
|
|
(<type>integer</type>)
|
|
</entry>
|
|
<entry>-2147221021</entry>
|
|
<entry>
|
|
Código de estado COM de iMoniker, devuelto en errores donde la llamada a la función
|
|
falló a causa de no estar disponible.
|
|
</entry>
|
|
<entry></entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
</chapter>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|