Sophie

Sophie

distrib > * > cooker > x86_64 > by-pkgid > 5fb1c39f9f9130a3cc01e8b1ffa5c0f8 > files > 9425

libreoffice-devel-3.5.4-4.x86_64.rpm

<html>
<head>
<title>enum RegError</title>
<link rel="stylesheet" type="text/css" href="../cpp.css">
</head>
<body>
<div id="adc-cppref">

<a name="_top_"> </a><table class="navimain" border="0" cellpadding="1" cellspacing="0">
<tr align="center" valign="top">
<td class="navimain">&nbsp;<a href="../index.html">Overview</a>&nbsp;</td>
<td class="navimain">&nbsp;<a href="index.html">Namespace</a>&nbsp;</td>
<td class="navimainnone">&nbsp;Class&nbsp;</td>
<td class="navimain">&nbsp;<a href="../index-files/index-1.html">Index</a>&nbsp;</td>
<td class="navimain">&nbsp;<a href="../help.html">Help</a>&nbsp;</td>
</tr>
</table>
<table class="navisub" cellpadding="0" cellspacing="3">
<tr>
<td width="20%"><font size="-2">LIST OF:</font></td>
<td>
&nbsp;<a href="#envals"><font size="-2"><b>VALUES</b></font></a></td>
</tr>
</table>
<hr>
<a href="../names/index.html" alt="Global Namespace in C++"><font size="+1"><b>::</b></font></a> <div class="title"><h2>enum RegError</h2>
</div><hr>
<dl>
<dt>Summary</dt>
<dd>specifies the possible error codes which can occur using the registry API.</dd>
</dl>
<hr>
<a name="envals"> </a><table class="childlist" border="1" cellpadding="5" cellspacing="0" width="100%">
<tr class="subtitle">
<td colspan="2"><h4>Values</h4>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_NO_ERROR"><b>REG_NO_ERROR</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>no error.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INTERNAL_ERROR"><b>REG_INTERNAL_ERROR</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>internal registry error.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_REGISTRY_NOT_OPEN"><b>REG_REGISTRY_NOT_OPEN</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>registry is not open.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_REGISTRY_NOT_EXISTS"><b>REG_REGISTRY_NOT_EXISTS</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>registry does not exists.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_REGISTRY_READONLY"><b>REG_REGISTRY_READONLY</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>registry is open with readonly access rights.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_DESTROY_REGISTRY_FAILED"><b>REG_DESTROY_REGISTRY_FAILED</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>destroy a registry failed. There are may be any open keys.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_CANNOT_OPEN_FOR_READWRITE"><b>REG_CANNOT_OPEN_FOR_READWRITE</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>registry cannot be opened with readwrite access because the registry is already
open with readwrite access anywhere.
</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INVALID_REGISTRY"><b>REG_INVALID_REGISTRY</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>registry is in an invalid state or the registry does not point to
a valid registry data file.
</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_KEY_NOT_OPEN"><b>REG_KEY_NOT_OPEN</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the key or key handle points to an invalid key or closed key.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_KEY_NOT_EXISTS"><b>REG_KEY_NOT_EXISTS</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the specified keyname points to a nonexisting key.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_CREATE_KEY_FAILED"><b>REG_CREATE_KEY_FAILED</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the key with the specified keyname cannot be created.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_DELETE_KEY_FAILED"><b>REG_DELETE_KEY_FAILED</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the specified key cannot be deleted. Maybe an open key handle exists to this key.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INVALID_KEYNAME"><b>REG_INVALID_KEYNAME</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the keyname is invalid. This error will return if the keyname
is NULL but should not be NULL in the context of a called function.
</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INVALID_KEY"><b>REG_INVALID_KEY</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the key is not in a valid state.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_VALUE_NOT_EXISTS"><b>REG_VALUE_NOT_EXISTS</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the key has no value</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_SET_VALUE_FAILED"><b>REG_SET_VALUE_FAILED</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>setting the specified value of a key failed.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_DELETE_VALUE_FAILED"><b>REG_DELETE_VALUE_FAILED</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>deleting of the key value failed.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INVALID_VALUE"><b>REG_INVALID_VALUE</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the key has a invalid value or the value type is unknown.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_MERGE_ERROR"><b>REG_MERGE_ERROR</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>merging a key, the value and all subkeys failed.</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_MERGE_CONFLICT"><b>REG_MERGE_CONFLICT</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>conflicts exists during the merge process of a key. This could happen if
the value of a key already exists and the merge process will replace it.
</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_DETECT_RECURSION"><b>REG_DETECT_RECURSION</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>a recursion was detected resolving different link targets (no longer
used).
</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INVALID_LINK"><b>REG_INVALID_LINK</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the link is invalid and can not be resolved (now used by all
link-related operations, as links are no longer supported).
</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INVALID_LINKNAME"><b>REG_INVALID_LINKNAME</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the specified linkname is not valid (no longer used).</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_INVALID_LINKTARGET"><b>REG_INVALID_LINKTARGET</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the linknane is not valid (no longer used).</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_LINKTARGET_NOT_EXIST"><b>REG_LINKTARGET_NOT_EXIST</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the link target points to a nonexisting key (no longer used).</dd>
</dl>
</td>
</tr>
<tr bgcolor="white">
<td width="20%" valign="top"><a name="REG_BUFFERSIZE_TOSMALL"><b>REG_BUFFERSIZE_TOSMALL</b></a></td>
<td><dl>
<dt>Summary</dt>
<dd>the reserved buffer for the resolved keyname is to small.</dd>
</dl>
</td>
</tr>
</table>
<hr>
<a href="#_top_" class="objchapter">Top of Page</a><hr size="3"><p class="copyright" align="center">Copyright &copy; 2000, 2012 LibreOffice contributors and/or their affiliates. All rights reserved.</p><p class="copyright" align="center">LibreOffice was created by The Document Foundation, based on OpenOffice.org, which is Copyright 2000, 2010 Oracle and/or its affiliates.</p><p class="copyright" align="center">The Document Foundation acknowledges all community members, please find more info <a href="http://www.libreoffice.org/about-us/credits/" target="_blank">at our website</a>.<p>&nbsp;</p><p class="copyright" align="center"><a href="http://www.libreoffice.org/privacy" target="_blank">Privacy Policy</a> | <a href="http://www.libreoffice.org/imprint" target="_blank">Impressum (Legal Info)</a> | Copyright information: The source code of LibreOffice is licensed under the GNU Lesser General Public License (<a href="http://www.libreoffice.org/download/license/" target="_blank">LGPLv3</a>). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our <a href="http://wiki.documentfoundation.org/TradeMark_Policy" target="_blank">trademark policy</a>.</p>

</div> <!-- id="adc-cppref" -->
</body>

</html>