Revert "core: Fix error types."
--
This reverts commit 6df6e01ed5
.
gpgme_error_t et al are from a time where we had no hard dependency on
libgpg-error. Now libgpg-error is a required and thus it does not
make sense to have these surrogates. In fact we should ventually
completely remove them.
Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
8071a6b2ca
commit
2486d0073b
2
NEWS
2
NEWS
@ -7,8 +7,6 @@ Noteworthy changes in version 1.8.1 (unreleased)
|
|||||||
|
|
||||||
* Interface changes relative to the 1.8.0 release:
|
* Interface changes relative to the 1.8.0 release:
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
gpgme_strerror_r CHANGED: Use gpgme_error_t (compatible type).
|
|
||||||
gpgme_data_set_flag CHANGED: Return gpgme_error_t (compatible type).
|
|
||||||
gpgme_op_createkey CHANGED: Meaning of 'expire' parameter.
|
gpgme_op_createkey CHANGED: Meaning of 'expire' parameter.
|
||||||
gpgme_op_createsubkey CHANGED: Meaning of 'expire' parameter.
|
gpgme_op_createsubkey CHANGED: Meaning of 'expire' parameter.
|
||||||
GPGME_CREATE_NOEXPIRE NEW.
|
GPGME_CREATE_NOEXPIRE NEW.
|
||||||
|
@ -259,7 +259,7 @@ gpgme_data_get_file_name (gpgme_data_t dh)
|
|||||||
|
|
||||||
|
|
||||||
/* Set a flag for the data object DH. See the manual for details. */
|
/* Set a flag for the data object DH. See the manual for details. */
|
||||||
gpgme_error_t
|
gpg_error_t
|
||||||
gpgme_data_set_flag (gpgme_data_t dh, const char *name, const char *value)
|
gpgme_data_set_flag (gpgme_data_t dh, const char *name, const char *value)
|
||||||
{
|
{
|
||||||
TRACE_BEG2 (DEBUG_DATA, "gpgme_data_set_flag", dh,
|
TRACE_BEG2 (DEBUG_DATA, "gpgme_data_set_flag", dh,
|
||||||
|
@ -41,7 +41,7 @@ gpgme_strerror (gpgme_error_t err)
|
|||||||
large enough, ERANGE is returned and BUF contains as much of the
|
large enough, ERANGE is returned and BUF contains as much of the
|
||||||
beginning of the error string as fits into the buffer. */
|
beginning of the error string as fits into the buffer. */
|
||||||
int
|
int
|
||||||
gpgme_strerror_r (gpgme_error_t err, char *buf, size_t buflen)
|
gpgme_strerror_r (gpg_error_t err, char *buf, size_t buflen)
|
||||||
{
|
{
|
||||||
return gpg_strerror_r (err, buf, buflen);
|
return gpg_strerror_r (err, buf, buflen);
|
||||||
}
|
}
|
||||||
|
@ -177,7 +177,7 @@ const char *gpgme_strerror (gpgme_error_t err);
|
|||||||
contains the string describing the error. If the buffer was not
|
contains the string describing the error. If the buffer was not
|
||||||
large enough, ERANGE is returned and BUF contains as much of the
|
large enough, ERANGE is returned and BUF contains as much of the
|
||||||
beginning of the error string as fits into the buffer. */
|
beginning of the error string as fits into the buffer. */
|
||||||
int gpgme_strerror_r (gpgme_error_t err, char *buf, size_t buflen);
|
int gpgme_strerror_r (gpg_error_t err, char *buf, size_t buflen);
|
||||||
|
|
||||||
/* Return a pointer to a string containing a description of the error
|
/* Return a pointer to a string containing a description of the error
|
||||||
source in the error value ERR. */
|
source in the error value ERR. */
|
||||||
@ -1161,7 +1161,7 @@ gpgme_error_t gpgme_data_set_file_name (gpgme_data_t dh,
|
|||||||
const char *file_name);
|
const char *file_name);
|
||||||
|
|
||||||
/* Set a flag for the data object DH. See the manual for details. */
|
/* Set a flag for the data object DH. See the manual for details. */
|
||||||
gpgme_error_t gpgme_data_set_flag (gpgme_data_t dh,
|
gpg_error_t gpgme_data_set_flag (gpgme_data_t dh,
|
||||||
const char *name, const char *value);
|
const char *name, const char *value);
|
||||||
|
|
||||||
/* Try to identify the type of the data in DH. */
|
/* Try to identify the type of the data in DH. */
|
||||||
|
Loading…
Reference in New Issue
Block a user