diff options
author | fiaxh <git@mx.ax.lt> | 2017-10-16 00:23:51 +0200 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-10-22 18:26:31 +0200 |
commit | 9ea16b6d8568cb383eb1f469d1dc54bfcad4f188 (patch) | |
tree | 27da8705fc99f2407af5e60083e34ddeeff39630 /plugins/gpgme-vala/vapi/gpgme.vapi | |
parent | 8b43df8ec3f92477f857280668a9f29f0b9d6229 (diff) | |
download | dino-9ea16b6d8568cb383eb1f469d1dc54bfcad4f188.tar.gz dino-9ea16b6d8568cb383eb1f469d1dc54bfcad4f188.zip |
PGP encrypted file transfers
Diffstat (limited to 'plugins/gpgme-vala/vapi/gpgme.vapi')
-rw-r--r-- | plugins/gpgme-vala/vapi/gpgme.vapi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/gpgme-vala/vapi/gpgme.vapi b/plugins/gpgme-vala/vapi/gpgme.vapi index 0b14185c..51823a15 100644 --- a/plugins/gpgme-vala/vapi/gpgme.vapi +++ b/plugins/gpgme-vala/vapi/gpgme.vapi @@ -464,7 +464,13 @@ namespace GPG { } [CCode (cname = "gpgme_data_new_from_file")] - public static GPGError.Error create_from_file(out Data d, string filename, int copy = 1); + public static GPGError.Error new_from_file(out Data d, string filename, int copy = 1); + + public static Data create_from_file(string filename, int copy = 1) { + Data data; + throw_if_error(new_from_file(out data, filename, copy)); + return data; + } [CCode (cname = "gpgme_data_release_and_get_mem")] public string release_and_get_mem(out size_t len); |