manpagez: man pages & more
info gpgme
Home | html | info | man

File: gpgme.info,  Node: Destroying Data Buffers,  Next: Manipulating Data Buffers,  Prev: Creating Data Buffers,  Up: Exchanging Data

6.2 Destroying Data Buffers
===========================

 -- Function: void gpgme_data_release (gpgme_data_t DH)
     The function ‘gpgme_data_release’ destroys the data object with the
     handle DH.  It releases all associated resources that were not
     provided by the user in the first place.

 -- Function: char * gpgme_data_release_and_get_mem (gpgme_data_t DH,
          size_t *LENGTH)
     The function ‘gpgme_data_release_and_get_mem’ is like
     ‘gpgme_data_release’, except that it returns the data buffer and
     its length that was provided by the object.

     The user has to release the buffer with ‘gpgme_free’.  In case the
     user provided the data buffer in non-copy mode, a copy will be made
     for this purpose.

     In case an error returns, or there is no suitable data buffer that
     can be returned to the user, the function will return ‘NULL’.  In
     any case, the data object DH is destroyed.

 -- Function: void gpgme_free (void *BUFFER)
     SINCE: 1.1.1

     The function ‘gpgme_free’ releases the memory returned by
     ‘gpgme_data_release_and_get_mem’ and ‘gpgme_pubkey_algo_string’.
     It should be used instead of the system libraries ‘free’ function
     in case different allocators are used by a program.  This is often
     the case if gpgme is used under Windows as a DLL.

© manpagez.com 2000-2024
Individual documents may contain additional copyright information.