@img/sharp-libvips-dev-wasm32 1.2.0-rc.2 → 1.2.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/ffi.h +20 -2
- package/include/glib-2.0/glib/gmarkup.h +4 -0
- package/include/libheif/heif.h +16 -2603
- package/include/libheif/heif_aux_images.h +182 -0
- package/include/libheif/heif_brands.h +373 -0
- package/include/libheif/heif_color.h +357 -0
- package/include/libheif/heif_context.h +329 -0
- package/include/libheif/heif_cxx.h +6 -6
- package/include/libheif/heif_decoding.h +162 -0
- package/include/libheif/heif_encoding.h +391 -0
- package/include/libheif/heif_entity_groups.h +60 -0
- package/include/libheif/heif_error.h +302 -0
- package/include/libheif/heif_image.h +352 -0
- package/include/libheif/heif_image_handle.h +120 -0
- package/include/libheif/heif_items.h +45 -45
- package/include/libheif/heif_library.h +216 -0
- package/include/libheif/heif_metadata.h +133 -0
- package/include/libheif/heif_plugin.h +53 -41
- package/include/libheif/heif_properties.h +73 -36
- package/include/libheif/heif_regions.h +95 -95
- package/include/libheif/heif_security.h +102 -0
- package/include/libheif/heif_sequences.h +577 -0
- package/include/libheif/heif_tai_timestamps.h +202 -0
- package/include/libheif/heif_tiling.h +137 -0
- package/include/libheif/heif_uncompressed.h +109 -0
- package/include/libheif/heif_version.h +2 -2
- package/include/vips/version.h +4 -4
- package/lib/glib-2.0/include/glibconfig.h +1 -1
- package/lib/libffi.a +0 -0
- package/lib/libffi.la +4 -4
- package/lib/libgio-2.0.a +0 -0
- package/lib/libglib-2.0.a +0 -0
- package/lib/libgobject-2.0.a +0 -0
- package/lib/libheif.a +0 -0
- package/lib/libjpeg.a +0 -0
- package/lib/libresvg.a +0 -0
- package/lib/libvips.a +0 -0
- package/lib/pkgconfig/gio-2.0.pc +1 -1
- package/lib/pkgconfig/glib-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
- package/lib/pkgconfig/gobject-2.0.pc +1 -1
- package/lib/pkgconfig/gthread-2.0.pc +1 -1
- package/lib/pkgconfig/libffi.pc +1 -1
- package/lib/pkgconfig/libheif.pc +1 -1
- package/lib/pkgconfig/vips-cpp.pc +1 -1
- package/lib/pkgconfig/vips.pc +1 -1
- package/package.json +1 -1
- package/versions.json +4 -4
package/include/ffi.h
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* -----------------------------------------------------------------*-C-*-
|
|
2
|
-
libffi 3.
|
|
3
|
-
- Copyright (c) 2011, 2014, 2019, 2021, 2022, 2024 Anthony Green
|
|
2
|
+
libffi 3.5.1
|
|
3
|
+
- Copyright (c) 2011, 2014, 2019, 2021, 2022, 2024, 2025 Anthony Green
|
|
4
4
|
- Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc.
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person
|
|
@@ -314,6 +314,24 @@ void ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_java_raw *raw, void **args) __a
|
|
|
314
314
|
FFI_API
|
|
315
315
|
size_t ffi_java_raw_size (ffi_cif *cif) __attribute__((deprecated));
|
|
316
316
|
|
|
317
|
+
/* ---- Version API ------------------------------------------------------ */
|
|
318
|
+
|
|
319
|
+
#define FFI_VERSION_STRING "3.5.1"
|
|
320
|
+
#define FFI_VERSION_NUMBER 30501
|
|
321
|
+
|
|
322
|
+
#ifndef LIBFFI_ASM
|
|
323
|
+
/* Return a version string. */
|
|
324
|
+
FFI_API const char *ffi_get_version (void);
|
|
325
|
+
|
|
326
|
+
/* Return the version as an unsigned long value: (x * 10000 + y * 100 + z) */
|
|
327
|
+
FFI_API unsigned long ffi_get_version_number (void);
|
|
328
|
+
#endif
|
|
329
|
+
|
|
330
|
+
/* ---- Internals API ---------------------------------------------------- */
|
|
331
|
+
|
|
332
|
+
FFI_API unsigned int ffi_get_default_abi (void);
|
|
333
|
+
FFI_API size_t ffi_get_closure_size (void);
|
|
334
|
+
|
|
317
335
|
/* ---- Definitions for closures ----------------------------------------- */
|
|
318
336
|
|
|
319
337
|
#if FFI_CLOSURES
|
|
@@ -143,6 +143,10 @@ typedef struct _GMarkupParser GMarkupParser;
|
|
|
143
143
|
* errors are intended to be set from these callbacks. If you set an error
|
|
144
144
|
* from a callback, g_markup_parse_context_parse() will report that error
|
|
145
145
|
* back to its caller.
|
|
146
|
+
*
|
|
147
|
+
* Refer to the [GMarkup](../glib/markup.html) documentation to understand
|
|
148
|
+
* the scope and limitations of `GMarkupParser`. In particular, it is not a
|
|
149
|
+
* full XML parser and it must not be used to process untrusted data.
|
|
146
150
|
*/
|
|
147
151
|
struct _GMarkupParser
|
|
148
152
|
{
|