diff options
author | Marcus Brinkmann <[email protected]> | 2002-01-22 15:21:42 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-01-22 15:21:42 +0000 |
commit | 8270a38b054b228d939c6822ca79f8ba3d57b4e4 (patch) | |
tree | 98d7055030bcbef203051a6f878ff55d04b507d2 /doc/gpgme.texi | |
parent | 2002-01-22 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-8270a38b054b228d939c6822ca79f8ba3d57b4e4.tar.gz gpgme-8270a38b054b228d939c6822ca79f8ba3d57b4e4.zip |
doc/
2002-01-22 Marcus Brinkmann <[email protected]>
* gpgme.texi (Creating data buffers): Change
gpgme_data_new_from_filepart's LENGTH type from off_t to size_t.
gpgme/
2002-01-22 Marcus Brinkmann <[email protected]>
* data.c (gpgme_data_new_from_filepart): Change type of LENGTH
from off_t to size_t.
* gpgme.h: Likewise.
Diffstat (limited to 'doc/gpgme.texi')
-rw-r--r-- | doc/gpgme.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi index c4d66bbf..ddd9432e 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -724,7 +724,7 @@ I/O operation fails, @code{GPGME_Not_Implemented} if @var{code} is zero, and @code{GPGME_Out_Of_Core} if not enough memory is available. @end deftypefun -@deftypefun GpgmeError gpgme_data_new_from_filepart (@w{GpgmeData *@var{dh}}, @w{const char *@var{filename}}, @w{FILE *@var{fp}}, @w{off_t @var{offset}}, @w{off_t @var{length}}) +@deftypefun GpgmeError gpgme_data_new_from_filepart (@w{GpgmeData *@var{dh}}, @w{const char *@var{filename}}, @w{FILE *@var{fp}}, @w{off_t @var{offset}}, @w{size_t @var{length}}) The function @code{gpgme_data_new_from_filepart} creates a new @code{GpgmeData} object and fills it with a part of the file specified by @var{filename} or @var{fp}. |