|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/ |
Upload File : |
#ifndef __GDK_PIXBUF_FEATURES_H__ #define __GDK_PIXBUF_FEATURES_H__ #if defined(GDK_PIXBUF_DISABLE_SINGLE_INCLUDES) && !defined (GDK_PIXBUF_H_INSIDE) && !defined (GDK_PIXBUF_COMPILATION) #error "Only <gdk-pixbuf/gdk-pixbuf.h> can be included directly." #endif #include <glib.h> /** * GDK_PIXBUF_MAJOR: * * Major version of gdk-pixbuf library, that is the "0" in * "0.8.2" for example. */ /** * GDK_PIXBUF_MINOR: * * Minor version of gdk-pixbuf library, that is the "8" in * "0.8.2" for example. */ /** * GDK_PIXBUF_MICRO: * * Micro version of gdk-pixbuf library, that is the "2" in * "0.8.2" for example. */ /** * GDK_PIXBUF_VERSION: * * Contains the full version of GdkPixbuf as a string. * * This is the version being compiled against; contrast with * `gdk_pixbuf_version`. */ #define GDK_PIXBUF_MAJOR (2) #define GDK_PIXBUF_MINOR (42) #define GDK_PIXBUF_MICRO (8) #define GDK_PIXBUF_VERSION "2.42.8" #ifndef _GDK_PIXBUF_EXTERN #define _GDK_PIXBUF_EXTERN extern #endif /* We prefix variable declarations so they can * properly get exported/imported from Windows DLLs. */ #ifdef G_PLATFORM_WIN32 # ifdef GDK_PIXBUF_STATIC_COMPILATION # define GDK_PIXBUF_VAR extern # else /* !GDK_PIXBUF_STATIC_COMPILATION */ # ifdef GDK_PIXBUF_C_COMPILATION # ifdef DLL_EXPORT # define GDK_PIXBUF_VAR _GDK_PIXBUF_EXTERN # else /* !DLL_EXPORT */ # define GDK_PIXBUF_VAR extern # endif /* !DLL_EXPORT */ # else /* !GDK_PIXBUF_C_COMPILATION */ # define GDK_PIXBUF_VAR extern __declspec(dllimport) # endif /* !GDK_PIXBUF_C_COMPILATION */ # endif /* !GDK_PIXBUF_STATIC_COMPILATION */ #else /* !G_PLATFORM_WIN32 */ # define GDK_PIXBUF_VAR _GDK_PIXBUF_EXTERN #endif /* !G_PLATFORM_WIN32 */ /** * gdk_pixbuf_major_version: * * The major version number of the gdk-pixbuf library. (e.g. in * gdk-pixbuf version 1.2.5 this is 1.) * * * This variable is in the library, so represents the * gdk-pixbuf library you have linked against. Contrast with the * `GDK_PIXBUF_MAJOR` macro, which represents the major version of the * gdk-pixbuf headers you have included. */ /** * gdk_pixbuf_minor_version: * * The minor version number of the gdk-pixbuf library. (e.g. in * gdk-pixbuf version 1.2.5 this is 2.) * * * This variable is in the library, so represents the * gdk-pixbuf library you have linked against. Contrast with the * `GDK_PIXBUF_MINOR` macro, which represents the minor version of the * gdk-pixbuf headers you have included. */ /** * gdk_pixbuf_micro_version: * * The micro version number of the gdk-pixbuf library. (e.g. in * gdk-pixbuf version 1.2.5 this is 5.) * * * This variable is in the library, so represents the * gdk-pixbuf library you have linked against. Contrast with the * `GDK_PIXBUF_MICRO` macro, which represents the micro version of the * gdk-pixbuf headers you have included. */ /** * gdk_pixbuf_version: * * Contains the full version of the gdk-pixbuf library as a string. * This is the version currently in use by a running program. */ GDK_PIXBUF_VAR const guint gdk_pixbuf_major_version; GDK_PIXBUF_VAR const guint gdk_pixbuf_minor_version; GDK_PIXBUF_VAR const guint gdk_pixbuf_micro_version; GDK_PIXBUF_VAR const char *gdk_pixbuf_version; #endif /* __GDK_PIXBUF_FEATURES_H__ */