Synopsis#include <glib.h> #define G_INLINE_FUNC #define G_STMT_START #define G_STMT_END #define G_BEGIN_DECLS #define G_END_DECLS #define G_N_ELEMENTS (arr) #define G_VA_COPY (ap1,ap2) #define G_STRINGIFY (macro_or_string) #define G_GNUC_EXTENSION #define G_GNUC_CONST #define G_GNUC_PURE #define G_GNUC_MALLOC #define G_GNUC_ALLOC_SIZE (x) #define G_GNUC_ALLOC_SIZE2 (x,y) #define G_GNUC_DEPRECATED #define G_GNUC_NORETURN #define G_GNUC_UNUSED #define G_GNUC_PRINTF ( format_idx, arg_idx ) #define G_GNUC_SCANF ( format_idx, arg_idx ) #define G_GNUC_FORMAT ( arg_idx ) #define G_GNUC_NULL_TERMINATED #define G_GNUC_WARN_UNUSED_RESULT #define G_GNUC_FUNCTION #define G_GNUC_PRETTY_FUNCTION #define G_GNUC_NO_INSTRUMENT #define G_HAVE_GNUC_VISIBILITY #define G_GNUC_INTERNAL #define G_GNUC_MAY_ALIAS if G_LIKELY (); #define G_UNLIKELY (expr) #define G_STRLOC #define G_STRFUNC #define G_GINT16_MODIFIER #define G_GINT16_FORMAT #define G_GUINT16_FORMAT #define G_GINT32_MODIFIER #define G_GINT32_FORMAT #define G_GUINT32_FORMAT #define G_GINT64_MODIFIER #define G_GINT64_FORMAT #define G_GUINT64_FORMAT #define G_GSIZE_MODIFIER #define G_GSIZE_FORMAT #define G_GSSIZE_FORMAT DescriptionThese macros provide more specialized features which are not needed so often by application programmers. DetailsG_INLINE_FUNC#define G_INLINE_FUNC
This macro is used to export function prototypes so they can be linked
with an external version when no inlining is performed. The file which
implements the functions should define This macro is often mistaken for a replacement for the inline keyword; inline is already declared in a portable manner in the glib headers and can be used normally. G_STMT_START#define G_STMT_START Used within multi-statement macros so that they can be used in places where only one statement is expected by the compiler. G_STMT_END#define G_STMT_END Used within multi-statement macros so that they can be used in places where only one statement is expected by the compiler. G_BEGIN_DECLS#define G_BEGIN_DECLS
Used (along with G_END_DECLS) to bracket header files. If the
compiler in use is a C++ compiler, adds G_END_DECLS#define G_END_DECLS
Used (along with G_BEGIN_DECLS) to bracket header files. If the
compiler in use is a C++ compiler, adds G_N_ELEMENTS()#define G_N_ELEMENTS(arr) Determines the number of elements in an array. The array must be declared so the compiler knows its size at compile-time; this macro will not work on an array allocated on the heap, only static arrays or arrays on the stack.
G_VA_COPY()#define G_VA_COPY(ap1,ap2) Portable way to copy va_list variables.
In order to use this function, you must include
G_STRINGIFY()#define G_STRINGIFY(macro_or_string) Accepts a macro or a string and converts it into a string.
G_GNUC_EXTENSION#define G_GNUC_EXTENSION
Expands to G_GNUC_CONST#define G_GNUC_CONST
Expands to the GNU C NoteA function that has pointer arguments and examines the data pointed to must not be declared const. Likewise, a function that calls a non-const function usually must not be const. It doesn't make sense for a const function to return void. G_GNUC_PURE#define G_GNUC_PURE
Expands to the GNU C G_GNUC_MALLOC#define G_GNUC_MALLOC
Expands to the GNU C Since 2.6 G_GNUC_ALLOC_SIZE()#define G_GNUC_ALLOC_SIZE(x)
Expands to the GNU C
Since 2.18 G_GNUC_ALLOC_SIZE2()#define G_GNUC_ALLOC_SIZE2(x,y)
Expands to the GNU C
Since 2.18 G_GNUC_DEPRECATED#define G_GNUC_DEPRECATED
Expands to the GNU C Since 2.2 G_GNUC_NORETURN#define G_GNUC_NORETURN
Expands to the GNU C G_GNUC_UNUSED#define G_GNUC_UNUSED
Expands to the GNU C G_GNUC_PRINTF()#define G_GNUC_PRINTF( format_idx, arg_idx )
Expands to the GNU C
gint g_snprintf (gchar *string,
gulong n,
gchar const *format,
...) G_GNUC_PRINTF (3, 4);
G_GNUC_SCANF()#define G_GNUC_SCANF( format_idx, arg_idx )
Expands to the GNU C
G_GNUC_FORMAT()#define G_GNUC_FORMAT( arg_idx )
Expands to the GNU C gchar *g_dgettext (gchar *domain_name, gchar *msgid) G_GNUC_FORMAT (2);
G_GNUC_NULL_TERMINATED#define G_GNUC_NULL_TERMINATED
Expands to the GNU C G_GNUC_WARN_UNUSED_RESULT#define G_GNUC_WARN_UNUSED_RESULT
Expands to the GNU C Since 2.10 G_GNUC_FUNCTION#define G_GNUC_FUNCTION Warning
Expands to "" on all modern compilers, and to G_GNUC_PRETTY_FUNCTION#define G_GNUC_PRETTY_FUNCTION Warning
Expands to "" on all modern compilers, and to
G_GNUC_NO_INSTRUMENT#define G_GNUC_NO_INSTRUMENT
Expands to the GNU C G_HAVE_GNUC_VISIBILITY#define G_HAVE_GNUC_VISIBILITY 1 This macro is defined as 1 if the compiler supports ELF visibility attributes (currently only gcc). Since: 2.6G_GNUC_INTERNAL#define G_GNUC_INTERNAL This attribute can be used for marking library functions as being used internally to the library only, which may allow the compiler to handle function calls more efficiently. Note that static functions do not need to be marked as internal in this way. See the GNU C documentation for details.
When using a compiler that supports the GNU C hidden visibility attribute,
this macro expands to Note that for portability, the attribute should be placed before the function declaration. While GCC allows the macro after the declaration, Sun Studio does not.
G_GNUC_INTERNAL
void _g_log_fallback_handler (const gchar *log_domain,
GLogLevelFlags log_level,
const gchar *message,
gpointer unused_data);
G_GNUC_MAY_ALIAS#define G_GNUC_MAY_ALIAS
Expands to the GNU C G_LIKELY ()if G_LIKELY (); Hints the compiler that the expression is likely to evaluate to a true value. The compiler may use this information for optimizations.
if (G_LIKELY (random () != 1))
g_print ("not one");
Since 2.2 G_UNLIKELY()#define G_UNLIKELY(expr) Hints the compiler that the expression is unlikely to evaluate to a true value. The compiler may use this information for optimizations.
if (G_UNLIKELY (random () == 1))
g_print ("a random one");
Since 2.2 G_GINT16_MODIFIER#define G_GINT16_MODIFIER "h"
The platform dependent length modifier for constructing The following example prints "0x7b";
gint16 value = 123;
g_print ("%#" G_GINT16_MODIFIER "x", value);
Since 2.4 G_GINT16_FORMAT#define G_GINT16_FORMAT "hi" This is the platform dependent conversion specifier for scanning and printing values of type gint16. It is a string literal, but doesn't include the percent-sign, such that you can add precision and length modifiers between percent-sign and conversion specifier.
gint16 in;
gint32 out;
sscanf ("42", "%" G_GINT16_FORMAT, &in)
out = in * 1000;
g_print ("%" G_GINT32_FORMAT, out);
G_GUINT16_FORMAT#define G_GUINT16_FORMAT "hu" This is the platform dependent conversion specifier for scanning and printing values of type guint16. See also G_GINT16_FORMAT. G_GINT32_MODIFIER#define G_GINT32_MODIFIER ""
The platform dependent length modifier for constructing Since 2.4 G_GINT32_FORMAT#define G_GINT32_FORMAT "i" This is the platform dependent conversion specifier for scanning and printing values of type gint32. See also G_GINT16_FORMAT. G_GUINT32_FORMAT#define G_GUINT32_FORMAT "u" This is the platform dependent conversion specifier for scanning and printing values of type guint32. See also G_GINT16_FORMAT. G_GINT64_MODIFIER#define G_GINT64_MODIFIER "ll"
The platform dependent length modifier for constructing NoteSome platforms do not support printing 64 bit integers, even though the types are supported. On such platforms G_GINT64_MODIFIER is not defined. Since 2.4 G_GINT64_FORMAT#define G_GINT64_FORMAT "lli" This is the platform dependent conversion specifier for scanning and printing values of type gint64. See also G_GINT16_FORMAT. Note
Some platforms do not support scanning and printing 64 bit integers,
even though the types are supported. On such platforms G_GINT64_FORMAT
is not defined. Note that G_GUINT64_FORMAT#define G_GUINT64_FORMAT "llu" This is the platform dependent conversion specifier for scanning and printing values of type guint64. See also G_GINT16_FORMAT. Note
Some platforms do not support scanning and printing 64 bit integers,
even though the types are supported. On such platforms G_GUINT64_FORMAT
is not defined. Note that G_GSIZE_MODIFIER#define G_GSIZE_MODIFIER ""
The platform dependent length modifier for constructing Since 2.6 G_GSIZE_FORMAT#define G_GSIZE_FORMAT "u" This is the platform dependent conversion specifier for scanning and printing values of type gsize. See also G_GINT16_FORMAT. Since 2.6 G_GSSIZE_FORMAT#define G_GSSIZE_FORMAT "i" This is the platform dependent conversion specifier for scanning and printing values of type gssize. See also G_GINT16_FORMAT. Since 2.6 | ||||||||||||||||||||||||||||||||||||||||