diff options
Diffstat (limited to 'gpgme/ops.h')
-rw-r--r-- | gpgme/ops.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gpgme/ops.h b/gpgme/ops.h index f01cc9a5..79ac7d41 100644 --- a/gpgme/ops.h +++ b/gpgme/ops.h @@ -136,8 +136,10 @@ void _gpgme_op_trustlist_event_cb (void *data, gpgme_event_io_t type, /*-- version.c --*/ -const char *_gpgme_compare_versions (const char *my_version, - const char *req_version); +/* Return true if MY_VERSION is at least REQ_VERSION, and false + otherwise. */ +int _gpgme_compare_versions (const char *my_version, + const char *req_version); char *_gpgme_get_program_version (const char *const path); #endif /* OPS_H */ |