Add missing funcs to public C API (#2692)

This commit is contained in:
Kleis Auke Wolthuizen 2022-02-27 14:42:17 +01:00 committed by GitHub
parent 50a74ceeec
commit 65fbcd351b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,7 @@ typedef struct _VipsDbuf {
void vips_dbuf_destroy( VipsDbuf *dbuf );
void vips_dbuf_init( VipsDbuf *dbuf );
gboolean vips_dbuf_minimum_size( VipsDbuf *dbuf, size_t size );
gboolean vips_dbuf_allocate( VipsDbuf *dbuf, size_t size );
size_t vips_dbuf_read( VipsDbuf *dbuf, unsigned char *data, size_t size );
unsigned char *vips_dbuf_get_write( VipsDbuf *dbuf, size_t *size );

View File

@ -816,6 +816,8 @@ typedef enum {
int vips_dzsave( VipsImage *in, const char *name, ... )
__attribute__((sentinel));
int vips_dzsave_buffer( VipsImage *in, void **buf, size_t *len, ... )
__attribute__((sentinel));
/**
* VipsForeignHeifCompression: