Method: GPGME.gpgme_data_get_encoding
- Defined in:
- ext/gpgme/gpgme_n.c
.gpgme_data_get_encoding ⇒ Object
538 539 540 541 542 543 544 545 546 547 |
# File 'ext/gpgme/gpgme_n.c', line 538 static VALUE rb_s_gpgme_data_get_encoding (VALUE dummy, VALUE vdh) { gpgme_data_t dh; gpgme_error_t err; UNWRAP_GPGME_DATA(vdh, dh); err = gpgme_data_get_encoding (dh); return LONG2NUM(err); } |