2 * Copyright © 2011 Red Hat, Inc
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the licence, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Author: Matthias Clasen
21 /* This file collects documentation for macros, typedefs and
22 * the like, which have no good home in any of the 'real' source
26 /* Basic types {{{1 */
31 * @short_description: standard GLib types, defined for ease-of-use
34 * GLib defines a number of commonly used types, which can be divided
36 * - New types which are not part of standard C (but are defined in
37 * various C standard library header files) - #gboolean, #gsize,
38 * #gssize, #goffset, #gintptr, #guintptr.
39 * - Integer types which are guaranteed to be the same size across
40 * all platforms - #gint8, #guint8, #gint16, #guint16, #gint32,
41 * #guint32, #gint64, #guint64.
42 * - Types which are easier to use than their standard C counterparts -
43 * #gpointer, #gconstpointer, #guchar, #guint, #gushort, #gulong.
44 * - Types which correspond exactly to standard C types, but are
45 * included for completeness - #gchar, #gint, #gshort, #glong,
48 * GLib also defines macros for the limits of some of the standard
49 * integer and floating point types, as well as macros for suitable
50 * printf() formats for these types.
56 * A standard boolean type.
57 * Variables of this type should only contain the value
65 * #gpointer looks better and is easier to use than void*.
71 * An untyped pointer to constant data.
72 * The data pointed to should not be changed.
74 * This is typically used in function prototypes to indicate
75 * that the data pointed to will not be altered by the function.
81 * Corresponds to the standard C char type.
87 * Corresponds to the standard C unsigned char type.
93 * Corresponds to the standard C int type.
94 * Values of this type can range from #G_MININT to #G_MAXINT.
100 * The minimum value which can be held in a #gint.
106 * The maximum value which can be held in a #gint.
112 * Corresponds to the standard C unsigned int type.
113 * Values of this type can range from 0 to #G_MAXUINT.
119 * The maximum value which can be held in a #guint.
125 * Corresponds to the standard C short type.
126 * Values of this type can range from #G_MINSHORT to #G_MAXSHORT.
132 * The minimum value which can be held in a #gshort.
138 * The maximum value which can be held in a #gshort.
144 * Corresponds to the standard C unsigned short type.
145 * Values of this type can range from 0 to #G_MAXUSHORT.
151 * The maximum value which can be held in a #gushort.
157 * Corresponds to the standard C long type.
158 * Values of this type can range from #G_MINLONG to #G_MAXLONG.
164 * The minimum value which can be held in a #glong.
170 * The maximum value which can be held in a #glong.
176 * Corresponds to the standard C unsigned long type.
177 * Values of this type can range from 0 to #G_MAXULONG.
183 * The maximum value which can be held in a #gulong.
189 * A signed integer guaranteed to be 8 bits on all platforms.
190 * Values of this type can range from #G_MININT8 (= -128) to
191 * #G_MAXINT8 (= 127).
197 * The minimum value which can be held in a #gint8.
205 * The maximum value which can be held in a #gint8.
213 * An unsigned integer guaranteed to be 8 bits on all platforms.
214 * Values of this type can range from 0 to #G_MAXUINT8 (= 255).
220 * The maximum value which can be held in a #guint8.
228 * A signed integer guaranteed to be 16 bits on all platforms.
229 * Values of this type can range from #G_MININT16 (= -32,768) to
230 * #G_MAXINT16 (= 32,767).
232 * To print or scan values of this type, use
233 * %G_GINT16_MODIFIER and/or %G_GINT16_FORMAT.
239 * The minimum value which can be held in a #gint16.
247 * The maximum value which can be held in a #gint16.
255 * The platform dependent length modifier for conversion specifiers
256 * for scanning and printing values of type #gint16 or #guint16. It
257 * is a string literal, but doesn't include the percent-sign, such
258 * that you can add precision and length modifiers between percent-sign
259 * and conversion specifier and append a conversion specifier.
261 * The following example prints "0x7b";
262 * |[<!-- language="C" -->
263 * gint16 value = 123;
264 * g_print ("%#" G_GINT16_MODIFIER "x", value);
273 * This is the platform dependent conversion specifier for scanning and
274 * printing values of type #gint16. It is a string literal, but doesn't
275 * include the percent-sign, such that you can add precision and length
276 * modifiers between percent-sign and conversion specifier.
278 * |[<!-- language="C" -->
281 * sscanf ("42", "%" G_GINT16_FORMAT, &in)
283 * g_print ("%" G_GINT32_FORMAT, out);
290 * An unsigned integer guaranteed to be 16 bits on all platforms.
291 * Values of this type can range from 0 to #G_MAXUINT16 (= 65,535).
293 * To print or scan values of this type, use
294 * %G_GINT16_MODIFIER and/or %G_GUINT16_FORMAT.
300 * The maximum value which can be held in a #guint16.
308 * This is the platform dependent conversion specifier for scanning
309 * and printing values of type #guint16. See also #G_GINT16_FORMAT
315 * A signed integer guaranteed to be 32 bits on all platforms.
316 * Values of this type can range from #G_MININT32 (= -2,147,483,648)
317 * to #G_MAXINT32 (= 2,147,483,647).
319 * To print or scan values of this type, use
320 * %G_GINT32_MODIFIER and/or %G_GINT32_FORMAT.
326 * The minimum value which can be held in a #gint32.
334 * The maximum value which can be held in a #gint32.
342 * The platform dependent length modifier for conversion specifiers
343 * for scanning and printing values of type #gint32 or #guint32. It
344 * is a string literal. See also #G_GINT16_MODIFIER.
352 * This is the platform dependent conversion specifier for scanning
353 * and printing values of type #gint32. See also #G_GINT16_FORMAT.
359 * An unsigned integer guaranteed to be 32 bits on all platforms.
360 * Values of this type can range from 0 to #G_MAXUINT32 (= 4,294,967,295).
362 * To print or scan values of this type, use
363 * %G_GINT32_MODIFIER and/or %G_GUINT32_FORMAT.
369 * The maximum value which can be held in a #guint32.
377 * This is the platform dependent conversion specifier for scanning
378 * and printing values of type #guint32. See also #G_GINT16_FORMAT.
384 * A signed integer guaranteed to be 64 bits on all platforms.
385 * Values of this type can range from #G_MININT64
386 * (= -9,223,372,036,854,775,808) to #G_MAXINT64
387 * (= 9,223,372,036,854,775,807).
389 * To print or scan values of this type, use
390 * %G_GINT64_MODIFIER and/or %G_GINT64_FORMAT.
396 * The minimum value which can be held in a #gint64.
402 * The maximum value which can be held in a #gint64.
408 * The platform dependent length modifier for conversion specifiers
409 * for scanning and printing values of type #gint64 or #guint64.
410 * It is a string literal.
412 * Some platforms do not support printing 64-bit integers, even
413 * though the types are supported. On such platforms %G_GINT64_MODIFIER
422 * This is the platform dependent conversion specifier for scanning
423 * and printing values of type #gint64. See also #G_GINT16_FORMAT.
425 * Some platforms do not support scanning and printing 64-bit integers,
426 * even though the types are supported. On such platforms %G_GINT64_FORMAT
427 * is not defined. Note that scanf() may not support 64-bit integers, even
428 * if %G_GINT64_FORMAT is defined. Due to its weak error handling, scanf()
429 * is not recommended for parsing anyway; consider using g_ascii_strtoull()
436 * An unsigned integer guaranteed to be 64-bits on all platforms.
437 * Values of this type can range from 0 to #G_MAXUINT64
438 * (= 18,446,744,073,709,551,615).
440 * To print or scan values of this type, use
441 * %G_GINT64_MODIFIER and/or %G_GUINT64_FORMAT.
447 * The maximum value which can be held in a #guint64.
453 * This is the platform dependent conversion specifier for scanning
454 * and printing values of type #guint64. See also #G_GINT16_FORMAT.
456 * Some platforms do not support scanning and printing 64-bit integers,
457 * even though the types are supported. On such platforms %G_GUINT64_FORMAT
458 * is not defined. Note that scanf() may not support 64-bit integers, even
459 * if %G_GINT64_FORMAT is defined. Due to its weak error handling, scanf()
460 * is not recommended for parsing anyway; consider using g_ascii_strtoull()
466 * @val: a literal integer value, e.g. 0x1d636b02300a7aa7
468 * This macro is used to insert 64-bit integer literals
469 * into the source code.
473 * G_GUINT64_CONSTANT:
474 * @val: a literal integer value, e.g. 0x1d636b02300a7aa7U
476 * This macro is used to insert 64-bit unsigned integer
477 * literals into the source code.
485 * Corresponds to the standard C float type.
486 * Values of this type can range from -#G_MAXFLOAT to #G_MAXFLOAT.
492 * The minimum positive value which can be held in a #gfloat.
494 * If you are interested in the smallest value which can be held
495 * in a #gfloat, use -%G_MAXFLOAT.
501 * The maximum value which can be held in a #gfloat.
507 * Corresponds to the standard C double type.
508 * Values of this type can range from -#G_MAXDOUBLE to #G_MAXDOUBLE.
514 * The minimum positive value which can be held in a #gdouble.
516 * If you are interested in the smallest value which can be held
517 * in a #gdouble, use -%G_MAXDOUBLE.
523 * The maximum value which can be held in a #gdouble.
529 * An unsigned integer type of the result of the sizeof operator,
530 * corresponding to the size_t type defined in C99.
531 * This type is wide enough to hold the numeric value of a pointer,
532 * so it is usually 32 bit wide on a 32-bit platform and 64 bit wide
533 * on a 64-bit platform. Values of this type can range from 0 to
536 * To print or scan values of this type, use
537 * %G_GSIZE_MODIFIER and/or %G_GSIZE_FORMAT.
543 * The maximum value which can be held in a #gsize.
551 * The platform dependent length modifier for conversion specifiers
552 * for scanning and printing values of type #gsize or #gssize. It
553 * is a string literal.
561 * This is the platform dependent conversion specifier for scanning
562 * and printing values of type #gsize. See also #G_GINT16_FORMAT.
570 * A signed variant of #gsize, corresponding to the
571 * ssize_t defined on most platforms.
572 * Values of this type can range from #G_MINSSIZE
575 * To print or scan values of this type, use
576 * %G_GSIZE_MODIFIER and/or %G_GSSIZE_FORMAT.
582 * The minimum value which can be held in a #gssize.
590 * The maximum value which can be held in a #gssize.
598 * This is the platform dependent conversion specifier for scanning
599 * and printing values of type #gssize. See also #G_GINT16_FORMAT.
607 * A signed integer type that is used for file offsets,
608 * corresponding to the C99 type off64_t.
609 * Values of this type can range from #G_MINOFFSET to
612 * To print or scan values of this type, use
613 * %G_GOFFSET_MODIFIER and/or %G_GOFFSET_FORMAT.
621 * The minimum value which can be held in a #goffset.
627 * The maximum value which can be held in a #goffset.
631 * G_GOFFSET_MODIFIER:
633 * The platform dependent length modifier for conversion specifiers
634 * for scanning and printing values of type #goffset. It is a string
635 * literal. See also #G_GINT64_MODIFIER.
643 * This is the platform dependent conversion specifier for scanning
644 * and printing values of type #goffset. See also #G_GINT64_FORMAT.
650 * G_GOFFSET_CONSTANT:
651 * @val: a literal integer value, e.g. 0x1d636b02300a7aa7
653 * This macro is used to insert #goffset 64-bit integer literals
654 * into the source code.
656 * See also #G_GINT64_CONSTANT.
664 * Corresponds to the C99 type intptr_t,
665 * a signed integer type that can hold any pointer.
667 * To print or scan values of this type, use
668 * %G_GINTPTR_MODIFIER and/or %G_GINTPTR_FORMAT.
674 * G_GINTPTR_MODIFIER:
676 * The platform dependent length modifier for conversion specifiers
677 * for scanning and printing values of type #gintptr or #guintptr.
678 * It is a string literal.
686 * This is the platform dependent conversion specifier for scanning
687 * and printing values of type #gintptr.
695 * Corresponds to the C99 type uintptr_t,
696 * an unsigned integer type that can hold any pointer.
698 * To print or scan values of this type, use
699 * %G_GINTPTR_MODIFIER and/or %G_GUINTPTR_FORMAT.
707 * This is the platform dependent conversion specifier
708 * for scanning and printing values of type #guintptr.
713 /* Type conversion {{{1 */
716 * SECTION:type_conversion
717 * @title: Type Conversion Macros
718 * @short_description: portably storing integers in pointer variables
720 * Many times GLib, GTK+, and other libraries allow you to pass "user
721 * data" to a callback, in the form of a void pointer. From time to time
722 * you want to pass an integer instead of a pointer. You could allocate
723 * an integer, with something like:
724 * |[<!-- language="C" -->
725 * int *ip = g_new (int, 1);
728 * But this is inconvenient, and it's annoying to have to free the
729 * memory at some later time.
731 * Pointers are always at least 32 bits in size (on all platforms GLib
732 * intends to support). Thus you can store at least 32-bit integer values
733 * in a pointer value. Naively, you might try this, but it's incorrect:
734 * |[<!-- language="C" -->
740 * Again, that example was not correct, don't copy it.
741 * The problem is that on some systems you need to do this:
742 * |[<!-- language="C" -->
745 * p = (void*) (long) 42;
746 * i = (int) (long) p;
748 * The GLib macros GPOINTER_TO_INT(), GINT_TO_POINTER(), etc. take care
749 * to do the right thing on the every platform.
751 * Warning: You may not store pointers in integers. This is not
752 * portable in any way, shape or form. These macros only allow storing
753 * integers in pointers, and only preserve 32 bits of the integer; values
754 * outside the range of a 32-bit integer will be mangled.
759 * @i: integer to stuff into a pointer
761 * Stuffs an integer into a pointer type.
763 * Remember, you may not store pointers in integers. This is not portable
764 * in any way, shape or form. These macros only allow storing integers in
765 * pointers, and only preserve 32 bits of the integer; values outside the
766 * range of a 32-bit integer will be mangled.
771 * @p: pointer containing an integer
773 * Extracts an integer from a pointer. The integer must have
774 * been stored in the pointer with GINT_TO_POINTER().
776 * Remember, you may not store pointers in integers. This is not portable
777 * in any way, shape or form. These macros only allow storing integers in
778 * pointers, and only preserve 32 bits of the integer; values outside the
779 * range of a 32-bit integer will be mangled.
784 * @u: unsigned integer to stuff into the pointer
786 * Stuffs an unsigned integer into a pointer type.
791 * @p: pointer to extract an unsigned integer from
793 * Extracts an unsigned integer from a pointer. The integer must have
794 * been stored in the pointer with GUINT_TO_POINTER().
799 * @s: #gsize to stuff into the pointer
801 * Stuffs a #gsize into a pointer type.
806 * @p: pointer to extract a #gsize from
808 * Extracts a #gsize from a pointer. The #gsize must have
809 * been stored in the pointer with GSIZE_TO_POINTER().
812 /* Byte order {{{1 */
816 * @title: Byte Order Macros
817 * @short_description: a portable way to convert between different byte orders
819 * These macros provide a portable way to determine the host byte order
820 * and to convert values between different byte orders.
822 * The byte order is the order in which bytes are stored to create larger
823 * data types such as the #gint and #glong values.
824 * The host byte order is the byte order used on the current machine.
826 * Some processors store the most significant bytes (i.e. the bytes that
827 * hold the largest part of the value) first. These are known as big-endian
828 * processors. Other processors (notably the x86 family) store the most
829 * significant byte last. These are known as little-endian processors.
831 * Finally, to complicate matters, some other processors store the bytes in
832 * a rather curious order known as PDP-endian. For a 4-byte word, the 3rd
833 * most significant byte is stored first, then the 4th, then the 1st and
836 * Obviously there is a problem when these different processors communicate
837 * with each other, for example over networks or by using binary file formats.
838 * This is where these macros come in. They are typically used to convert
839 * values into a byte order which has been agreed on for use when
840 * communicating between different processors. The Internet uses what is
841 * known as 'network byte order' as the standard byte order (which is in
842 * fact the big-endian byte order).
844 * Note that the byte order conversion macros may evaluate their arguments
845 * multiple times, thus you should not use them with arguments which have
852 * The host byte order.
853 * This can be either #G_LITTLE_ENDIAN or #G_BIG_ENDIAN (support for
854 * #G_PDP_ENDIAN may be added in future.)
860 * Specifies one of the possible types of byte order.
867 * Specifies one of the possible types of byte order.
874 * Specifies one of the possible types of byte order
875 * (currently unused). See #G_BYTE_ORDER.
880 * @val: a 32-bit integer value in host byte order
882 * Converts a 32-bit integer value from host to network byte order.
884 * Returns: @val converted to network byte order
889 * @val: a 16-bit integer value in host byte order
891 * Converts a 16-bit integer value from host to network byte order.
893 * Returns: @val converted to network byte order
898 * @val: a 32-bit integer value in network byte order
900 * Converts a 32-bit integer value from network to host byte order.
902 * Returns: @val converted to host byte order.
907 * @val: a 16-bit integer value in network byte order
909 * Converts a 16-bit integer value from network to host byte order.
911 * Returns: @val converted to host byte order
916 * @val: a #gint value in big-endian byte order
918 * Converts a #gint value from big-endian to host byte order.
920 * Returns: @val converted to host byte order
925 * @val: a #gint value in little-endian byte order
927 * Converts a #gint value from little-endian to host byte order.
929 * Returns: @val converted to host byte order
934 * @val: a #gint value in host byte order
936 * Converts a #gint value from host byte order to big-endian.
938 * Returns: @val converted to big-endian byte order
943 * @val: a #gint value in host byte order
945 * Converts a #gint value from host byte order to little-endian.
947 * Returns: @val converted to little-endian byte order
952 * @val: a #guint value in big-endian byte order
954 * Converts a #guint value from big-endian to host byte order.
956 * Returns: @val converted to host byte order
961 * @val: a #guint value in little-endian byte order
963 * Converts a #guint value from little-endian to host byte order.
965 * Returns: @val converted to host byte order
970 * @val: a #guint value in host byte order
972 * Converts a #guint value from host byte order to big-endian.
974 * Returns: @val converted to big-endian byte order
979 * @val: a #guint value in host byte order
981 * Converts a #guint value from host byte order to little-endian.
983 * Returns: @val converted to little-endian byte order.
988 * @val: a #glong value in big-endian byte order
990 * Converts a #glong value from big-endian to the host byte order.
992 * Returns: @val converted to host byte order
997 * @val: a #glong value in little-endian byte order
999 * Converts a #glong value from little-endian to host byte order.
1001 * Returns: @val converted to host byte order
1006 * @val: a #glong value in host byte order
1008 * Converts a #glong value from host byte order to big-endian.
1010 * Returns: @val converted to big-endian byte order
1015 * @val: a #glong value in host byte order
1017 * Converts a #glong value from host byte order to little-endian.
1019 * Returns: @val converted to little-endian
1024 * @val: a #gulong value in big-endian byte order
1026 * Converts a #gulong value from big-endian to host byte order.
1028 * Returns: @val converted to host byte order
1033 * @val: a #gulong value in little-endian byte order
1035 * Converts a #gulong value from little-endian to host byte order.
1037 * Returns: @val converted to host byte order
1042 * @val: a #gulong value in host byte order
1044 * Converts a #gulong value from host byte order to big-endian.
1046 * Returns: @val converted to big-endian
1051 * @val: a #gulong value in host byte order
1053 * Converts a #gulong value from host byte order to little-endian.
1055 * Returns: @val converted to little-endian
1060 * @val: a #gsize value in big-endian byte order
1062 * Converts a #gsize value from big-endian to the host byte order.
1064 * Returns: @val converted to host byte order
1069 * @val: a #gsize value in little-endian byte order
1071 * Converts a #gsize value from little-endian to host byte order.
1073 * Returns: @val converted to host byte order
1078 * @val: a #gsize value in host byte order
1080 * Converts a #gsize value from host byte order to big-endian.
1082 * Returns: @val converted to big-endian byte order
1087 * @val: a #gsize value in host byte order
1089 * Converts a #gsize value from host byte order to little-endian.
1091 * Returns: @val converted to little-endian
1096 * @val: a #gssize value in big-endian byte order
1098 * Converts a #gssize value from big-endian to host byte order.
1100 * Returns: @val converted to host byte order
1105 * @val: a #gssize value in little-endian byte order
1107 * Converts a #gssize value from little-endian to host byte order.
1109 * Returns: @val converted to host byte order
1114 * @val: a #gssize value in host byte order
1116 * Converts a #gssize value from host byte order to big-endian.
1118 * Returns: @val converted to big-endian
1123 * @val: a #gssize value in host byte order
1125 * Converts a #gssize value from host byte order to little-endian.
1127 * Returns: @val converted to little-endian
1132 * @val: a #gint16 value in big-endian byte order
1134 * Converts a #gint16 value from big-endian to host byte order.
1136 * Returns: @val converted to host byte order
1141 * @val: a #gint16 value in little-endian byte order
1143 * Converts a #gint16 value from little-endian to host byte order.
1145 * Returns: @val converted to host byte order
1150 * @val: a #gint16 value in host byte order
1152 * Converts a #gint16 value from host byte order to big-endian.
1154 * Returns: @val converted to big-endian
1159 * @val: a #gint16 value in host byte order
1161 * Converts a #gint16 value from host byte order to little-endian.
1163 * Returns: @val converted to little-endian
1168 * @val: a #guint16 value in big-endian byte order
1170 * Converts a #guint16 value from big-endian to host byte order.
1172 * Returns: @val converted to host byte order
1177 * @val: a #guint16 value in little-endian byte order
1179 * Converts a #guint16 value from little-endian to host byte order.
1181 * Returns: @val converted to host byte order
1186 * @val: a #guint16 value in host byte order
1188 * Converts a #guint16 value from host byte order to big-endian.
1190 * Returns: @val converted to big-endian
1195 * @val: a #guint16 value in host byte order
1197 * Converts a #guint16 value from host byte order to little-endian.
1199 * Returns: @val converted to little-endian
1204 * @val: a #gint32 value in big-endian byte order
1206 * Converts a #gint32 value from big-endian to host byte order.
1208 * Returns: @val converted to host byte order
1213 * @val: a #gint32 value in little-endian byte order
1215 * Converts a #gint32 value from little-endian to host byte order.
1217 * Returns: @val converted to host byte order
1222 * @val: a #gint32 value in host byte order
1224 * Converts a #gint32 value from host byte order to big-endian.
1226 * Returns: @val converted to big-endian
1231 * @val: a #gint32 value in host byte order
1233 * Converts a #gint32 value from host byte order to little-endian.
1235 * Returns: @val converted to little-endian
1240 * @val: a #guint32 value in big-endian byte order
1242 * Converts a #guint32 value from big-endian to host byte order.
1244 * Returns: @val converted to host byte order
1249 * @val: a #guint32 value in little-endian byte order
1251 * Converts a #guint32 value from little-endian to host byte order.
1253 * Returns: @val converted to host byte order
1258 * @val: a #guint32 value in host byte order
1260 * Converts a #guint32 value from host byte order to big-endian.
1262 * Returns: @val converted to big-endian
1267 * @val: a #guint32 value in host byte order
1269 * Converts a #guint32 value from host byte order to little-endian.
1271 * Returns: @val converted to little-endian
1276 * @val: a #gint64 value in big-endian byte order
1278 * Converts a #gint64 value from big-endian to host byte order.
1280 * Returns: @val converted to host byte order
1285 * @val: a #gint64 value in little-endian byte order
1287 * Converts a #gint64 value from little-endian to host byte order.
1289 * Returns: @val converted to host byte order
1294 * @val: a #gint64 value in host byte order
1296 * Converts a #gint64 value from host byte order to big-endian.
1298 * Returns: @val converted to big-endian
1303 * @val: a #gint64 value in host byte order
1305 * Converts a #gint64 value from host byte order to little-endian.
1307 * Returns: @val converted to little-endian
1312 * @val: a #guint64 value in big-endian byte order
1314 * Converts a #guint64 value from big-endian to host byte order.
1316 * Returns: @val converted to host byte order
1321 * @val: a #guint64 value in little-endian byte order
1323 * Converts a #guint64 value from little-endian to host byte order.
1325 * Returns: @val converted to host byte order
1330 * @val: a #guint64 value in host byte order
1332 * Converts a #guint64 value from host byte order to big-endian.
1334 * Returns: @val converted to big-endian
1339 * @val: a #guint64 value in host byte order
1341 * Converts a #guint64 value from host byte order to little-endian.
1343 * Returns: @val converted to little-endian
1347 * GUINT16_SWAP_BE_PDP:
1348 * @val: a #guint16 value in big-endian or pdp-endian byte order
1350 * Converts a #guint16 value between big-endian and pdp-endian byte order.
1351 * The conversion is symmetric so it can be used both ways.
1353 * Returns: @val converted to the opposite byte order
1357 * GUINT16_SWAP_LE_BE:
1358 * @val: a #guint16 value in little-endian or big-endian byte order
1360 * Converts a #guint16 value between little-endian and big-endian byte order.
1361 * The conversion is symmetric so it can be used both ways.
1363 * Returns: @val converted to the opposite byte order
1367 * GUINT16_SWAP_LE_PDP:
1368 * @val: a #guint16 value in little-endian or pdp-endian byte order
1370 * Converts a #guint16 value between little-endian and pdp-endian byte order.
1371 * The conversion is symmetric so it can be used both ways.
1373 * Returns: @val converted to the opposite byte order
1377 * GUINT32_SWAP_BE_PDP:
1378 * @val: a #guint32 value in big-endian or pdp-endian byte order
1380 * Converts a #guint32 value between big-endian and pdp-endian byte order.
1381 * The conversion is symmetric so it can be used both ways.
1383 * Returns: @val converted to the opposite byte order
1387 * GUINT32_SWAP_LE_BE:
1388 * @val: a #guint32 value in little-endian or big-endian byte order
1390 * Converts a #guint32 value between little-endian and big-endian byte order.
1391 * The conversion is symmetric so it can be used both ways.
1393 * Returns: @val converted to the opposite byte order
1397 * GUINT32_SWAP_LE_PDP:
1398 * @val: a #guint32 value in little-endian or pdp-endian byte order
1400 * Converts a #guint32 value between little-endian and pdp-endian byte order.
1401 * The conversion is symmetric so it can be used both ways.
1403 * Returns: @val converted to the opposite byte order
1407 * GUINT64_SWAP_LE_BE:
1408 * @val: a #guint64 value in little-endian or big-endian byte order
1410 * Converts a #guint64 value between little-endian and big-endian byte order.
1411 * The conversion is symmetric so it can be used both ways.
1413 * Returns: @val converted to the opposite byte order
1416 /* Numerical Definitions {{{1 */
1420 * @title: Numerical Definitions
1421 * @short_description: mathematical constants, and floating point decomposition
1423 * GLib offers mathematical constants such as #G_PI for the value of pi;
1424 * many platforms have these in the C library, but some don't, the GLib
1425 * versions always exist.
1427 * The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the
1428 * sign, mantissa and exponent of IEEE floats and doubles. These unions are
1429 * defined as appropriate for a given platform. IEEE floats and doubles are
1430 * supported (used for storage) by at least Intel, PPC and Sparc. See
1431 * [IEEE 754-2008](http://en.wikipedia.org/wiki/IEEE_float)
1432 * for more information about IEEE number formats.
1436 * G_IEEE754_FLOAT_BIAS:
1438 * The bias by which exponents in single-precision floats are offset.
1442 * G_IEEE754_DOUBLE_BIAS:
1444 * The bias by which exponents in double-precision floats are offset.
1449 * @v_float: the double value
1451 * The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign,
1452 * mantissa and exponent of IEEE floats and doubles. These unions are defined
1453 * as appropriate for a given platform. IEEE floats and doubles are supported
1454 * (used for storage) by at least Intel, PPC and Sparc.
1459 * @v_double: the double value
1461 * The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign,
1462 * mantissa and exponent of IEEE floats and doubles. These unions are defined
1463 * as appropriate for a given platform. IEEE floats and doubles are supported
1464 * (used for storage) by at least Intel, PPC and Sparc.
1470 * The base of natural logarithms.
1476 * The natural logarithm of 2.
1482 * The natural logarithm of 10.
1488 * The value of pi (ratio of circle's circumference to its diameter).
1506 * The square root of two.
1512 * Multiplying the base 2 exponent by this number yields the base 10 exponent.
1519 * @title: Standard Macros
1520 * @short_description: commonly-used macros
1522 * These macros provide a few commonly-used features.
1528 * This macro is defined only on Windows. So you can bracket
1529 * Windows-specific code in "\#ifdef G_OS_WIN32".
1535 * This macro is defined only on UNIX. So you can bracket
1536 * UNIX-specific code in "\#ifdef G_OS_UNIX".
1542 * The directory separator character.
1543 * This is '/' on UNIX machines and '\' under Windows.
1547 * G_DIR_SEPARATOR_S:
1549 * The directory separator as a string.
1550 * This is "/" on UNIX machines and "\" under Windows.
1554 * G_IS_DIR_SEPARATOR:
1557 * Checks whether a character is a directory
1558 * separator. It returns %TRUE for '/' on UNIX
1559 * machines and for '\' or '/' under Windows.
1565 * G_SEARCHPATH_SEPARATOR:
1567 * The search path separator character.
1568 * This is ':' on UNIX machines and ';' under Windows.
1572 * G_SEARCHPATH_SEPARATOR_S:
1574 * The search path separator as a string.
1575 * This is ":" on UNIX machines and ";" under Windows.
1581 * Defines the %TRUE value for the #gboolean type.
1587 * Defines the %FALSE value for the #gboolean type.
1593 * Defines the standard %NULL pointer.
1598 * @a: a numeric value
1599 * @b: a numeric value
1601 * Calculates the minimum of @a and @b.
1603 * Returns: the minimum of @a and @b.
1608 * @a: a numeric value
1609 * @b: a numeric value
1611 * Calculates the maximum of @a and @b.
1613 * Returns: the maximum of @a and @b.
1618 * @a: a numeric value
1620 * Calculates the absolute value of @a.
1621 * The absolute value is simply the number with any negative sign taken away.
1625 * - ABS(10) is also 10.
1627 * Returns: the absolute value of @a.
1632 * @x: the value to clamp
1633 * @low: the minimum value allowed
1634 * @high: the maximum value allowed
1636 * Ensures that @x is between the limits set by @low and @high. If @low is
1637 * greater than @high the result is undefined.
1640 * - CLAMP(5, 10, 15) is 10.
1641 * - CLAMP(15, 5, 10) is 10.
1642 * - CLAMP(20, 15, 25) is 20.
1644 * Returns: the value of @x clamped to the range between @low and @high
1649 * @member_type: the type of the struct field
1650 * @struct_p: a pointer to a struct
1651 * @struct_offset: the offset of the field from the start of the struct,
1654 * Returns a member of a structure at a given offset, using the given type.
1656 * Returns: the struct member
1660 * G_STRUCT_MEMBER_P:
1661 * @struct_p: a pointer to a struct
1662 * @struct_offset: the offset from the start of the struct, in bytes
1664 * Returns an untyped pointer to a given offset of a struct.
1666 * Returns: an untyped pointer to @struct_p plus @struct_offset bytes
1671 * @struct_type: a structure type, e.g. #GtkWidget
1672 * @member: a field in the structure, e.g. @window
1674 * Returns the offset, in bytes, of a member of a struct.
1676 * Returns: the offset of @member from the start of @struct_type
1682 * If %G_DISABLE_CONST_RETURNS is defined, this macro expands
1683 * to nothing. By default, the macro expands to const. The macro
1684 * can be used in place of const for functions that return a value
1685 * that should not be modified. The purpose of this macro is to allow
1686 * us to turn on const for returned constant strings by default, while
1687 * allowing programmers who find that annoying to turn it off. This macro
1688 * should only be used for return values and for "out" parameters, it
1689 * doesn't make sense for "in" parameters.
1691 * Deprecated: 2.30: API providers should replace all existing uses with
1692 * const and API consumers should adjust their code accordingly
1699 * Determines the number of elements in an array. The array must be
1700 * declared so the compiler knows its size at compile-time; this
1701 * macro will not work on an array allocated on the heap, only static
1702 * arrays or arrays on the stack.
1705 / * Miscellaneous Macros {{{1 */
1708 * SECTION:macros_misc
1709 * @title: Miscellaneous Macros
1710 * @short_description: specialized macros which are not used often
1712 * These macros provide more specialized features which are not
1713 * needed so often by application programmers.
1719 * This macro is used to export function prototypes so they can be linked
1720 * with an external version when no inlining is performed. The file which
1721 * implements the functions should define %G_IMPLEMENTS_INLINES
1722 * before including the headers which contain %G_INLINE_FUNC declarations.
1723 * Since inlining is very compiler-dependent using these macros correctly
1724 * is very difficult. Their use is strongly discouraged.
1726 * This macro is often mistaken for a replacement for the inline keyword;
1727 * inline is already declared in a portable manner in the GLib headers
1728 * and can be used normally.
1734 * Used within multi-statement macros so that they can be used in places
1735 * where only one statement is expected by the compiler.
1741 * Used within multi-statement macros so that they can be used in places
1742 * where only one statement is expected by the compiler.
1748 * Used (along with #G_END_DECLS) to bracket header files. If the
1749 * compiler in use is a C++ compiler, adds extern "C"
1750 * around the header.
1756 * Used (along with #G_BEGIN_DECLS) to bracket header files. If the
1757 * compiler in use is a C++ compiler, adds extern "C"
1758 * around the header.
1763 * @ap1: the va_list variable to place a copy of @ap2 in
1766 * Portable way to copy va_list variables.
1768 * In order to use this function, you must include string.h yourself,
1769 * because this macro may use memmove() and GLib does not include
1775 * @macro_or_string: a macro or a string
1777 * Accepts a macro or a string and converts it into a string after
1778 * preprocessor argument expansion. For example, the following code:
1780 * |[<!-- language="C" -->
1782 * const gchar *greeting = G_STRINGIFY (AGE) " today!";
1785 * is transformed by the preprocessor into (code equivalent to):
1787 * |[<!-- language="C" -->
1788 * const gchar *greeting = "27 today!";
1794 * @identifier1: an identifier
1795 * @identifier2: an identifier
1797 * Yields a new preprocessor pasted identifier
1798 * @identifier1identifier2 from its expanded
1799 * arguments @identifier1 and @identifier2. For example,
1800 * the following code:
1801 * |[<!-- language="C" -->
1802 * #define GET(traveller,method) G_PASTE(traveller_get_, method) (traveller)
1803 * const gchar *name = GET (traveller, name);
1804 * const gchar *quest = GET (traveller, quest);
1805 * GdkColor *favourite = GET (traveller, favourite_colour);
1808 * is transformed by the preprocessor into:
1809 * |[<!-- language="C" -->
1810 * const gchar *name = traveller_get_name (traveller);
1811 * const gchar *quest = traveller_get_quest (traveller);
1812 * GdkColor *favourite = traveller_get_favourite_colour (traveller);
1820 * @expr: a constant expression
1822 * The G_STATIC_ASSERT() macro lets the programmer check
1823 * a condition at compile time, the condition needs to
1824 * be compile time computable. The macro can be used in
1825 * any place where a typedef is valid.
1827 * A typedef is generally allowed in exactly the same places that
1828 * a variable declaration is allowed. For this reason, you should
1829 * not use G_STATIC_ASSERT() in the middle of blocks of code.
1831 * The macro should only be used once per source code line.
1837 * G_STATIC_ASSERT_EXPR:
1838 * @expr: a constant expression
1840 * The G_STATIC_ASSERT_EXPR() macro lets the programmer check
1841 * a condition at compile time. The condition needs to be
1842 * compile time computable.
1844 * Unlike G_STATIC_ASSERT(), this macro evaluates to an expression
1845 * and, as such, can be used in the middle of other expressions.
1846 * Its value should be ignored. This can be accomplished by placing
1847 * it as the first argument of a comma expression.
1849 * |[<!-- language="C" -->
1850 * #define ADD_ONE_TO_INT(x) \
1851 * (G_STATIC_ASSERT_EXPR(sizeof (x) == sizeof (int)), ((x) + 1))
1860 * Expands to __extension__ when gcc is used as the compiler. This simply
1861 * tells gcc not to warn about the following non-standard code when compiling
1862 * with the `-pedantic` option.
1868 * Expands to the GNU C const function attribute if the compiler is gcc.
1869 * Declaring a function as const enables better optimization of calls to
1870 * the function. A const function doesn't examine any values except its
1871 * parameters, and has no effects except its return value.
1873 * Place the attribute after the declaration, just before the semicolon.
1875 * See the GNU C documentation for more details.
1877 * A function that has pointer arguments and examines the data pointed to
1878 * must not be declared const. Likewise, a function that calls a non-const
1879 * function usually must not be const. It doesn't make sense for a const
1880 * function to return void.
1886 * Expands to the GNU C pure function attribute if the compiler is gcc.
1887 * Declaring a function as pure enables better optimization of calls to
1888 * the function. A pure function has no effects except its return value
1889 * and the return value depends only on the parameters and/or global
1892 * Place the attribute after the declaration, just before the semicolon.
1894 * See the GNU C documentation for more details.
1900 * Expands to the GNU C malloc function attribute if the compiler is gcc.
1901 * Declaring a function as malloc enables better optimization of the function.
1902 * A function can have the malloc attribute if it returns a pointer which is
1903 * guaranteed to not alias with any other pointer when the function returns
1904 * (in practice, this means newly allocated memory).
1906 * Place the attribute after the declaration, just before the semicolon.
1908 * See the GNU C documentation for more details.
1914 * G_GNUC_ALLOC_SIZE:
1915 * @x: the index of the argument specifying the allocation size
1917 * Expands to the GNU C alloc_size function attribute if the compiler
1918 * is a new enough gcc. This attribute tells the compiler that the
1919 * function returns a pointer to memory of a size that is specified
1920 * by the @xth function parameter.
1922 * Place the attribute after the function declaration, just before the
1925 * See the GNU C documentation for more details.
1931 * G_GNUC_ALLOC_SIZE2:
1932 * @x: the index of the argument specifying one factor of the allocation size
1933 * @y: the index of the argument specifying the second factor of the allocation size
1935 * Expands to the GNU C alloc_size function attribute if the compiler is a
1936 * new enough gcc. This attribute tells the compiler that the function returns
1937 * a pointer to memory of a size that is specified by the product of two
1938 * function parameters.
1940 * Place the attribute after the function declaration, just before the
1943 * See the GNU C documentation for more details.
1949 * G_GNUC_DEPRECATED:
1951 * Expands to the GNU C deprecated attribute if the compiler is gcc.
1952 * It can be used to mark typedefs, variables and functions as deprecated.
1953 * When called with the `-Wdeprecated-declarations` option,
1954 * gcc will generate warnings when deprecated interfaces are used.
1956 * Place the attribute after the declaration, just before the semicolon.
1958 * See the GNU C documentation for more details.
1964 * G_GNUC_DEPRECATED_FOR:
1965 * @f: the intended replacement for the deprecated symbol,
1966 * such as the name of a function
1968 * Like %G_GNUC_DEPRECATED, but names the intended replacement for the
1969 * deprecated symbol if the version of gcc in use is new enough to support
1970 * custom deprecation messages.
1972 * Place the attribute after the declaration, just before the semicolon.
1974 * See the GNU C documentation for more details.
1976 * Note that if @f is a macro, it will be expanded in the warning message.
1977 * You can enclose it in quotes to prevent this. (The quotes will show up
1978 * in the warning, but it's better than showing the macro expansion.)
1984 * G_GNUC_BEGIN_IGNORE_DEPRECATIONS:
1986 * Tells gcc (if it is a new enough version) to temporarily stop emitting
1987 * warnings when functions marked with %G_GNUC_DEPRECATED or
1988 * %G_GNUC_DEPRECATED_FOR are called. This is useful for when you have
1989 * one deprecated function calling another one, or when you still have
1990 * regression tests for deprecated functions.
1992 * Use %G_GNUC_END_IGNORE_DEPRECATIONS to begin warning again. (If you
1993 * are not compiling with `-Wdeprecated-declarations` then neither macro
1996 * This macro can be used either inside or outside of a function body,
1997 * but must appear on a line by itself.
2003 * G_GNUC_END_IGNORE_DEPRECATIONS:
2005 * Undoes the effect of %G_GNUC_BEGIN_IGNORE_DEPRECATIONS, telling
2006 * gcc to begin outputting warnings again (assuming those warnings
2007 * had been enabled to begin with).
2009 * This macro can be used either inside or outside of a function body,
2010 * but must appear on a line by itself.
2018 * This macro is similar to %G_GNUC_DEPRECATED, and can be used to mark
2019 * functions declarations as deprecated. Unlike %G_GNUC_DEPRECATED, it is
2020 * meant to be portable across different compilers and must be placed
2021 * before the function declaration.
2028 * @f: the name of the function that this function was deprecated for
2030 * This macro is similar to %G_GNUC_DEPRECATED_FOR, and can be used to mark
2031 * functions declarations as deprecated. Unlike %G_GNUC_DEPRECATED_FOR, it
2032 * is meant to be portable across different compilers and must be placed
2033 * before the function declaration.
2040 * @maj: the major version that introduced the symbol
2041 * @min: the minor version that introduced the symbol
2043 * This macro can be used to mark a function declaration as unavailable.
2044 * It must be placed before the function declaration. Use of a function
2045 * that has been annotated with this macros will produce a compiler warning.
2051 * GLIB_DISABLE_DEPRECATION_WARNINGS:
2053 * A macro that should be defined before including the glib.h header.
2054 * If it is defined, no compiler warnings will be produced for uses
2055 * of deprecated GLib APIs.
2061 * Expands to the GNU C noreturn function attribute if the compiler is gcc.
2062 * It is used for declaring functions which never return. It enables
2063 * optimization of the function, and avoids possible compiler warnings.
2065 * Place the attribute after the declaration, just before the semicolon.
2067 * See the GNU C documentation for more details.
2073 * Expands to the GNU C unused function attribute if the compiler is gcc.
2074 * It is used for declaring functions and arguments which may never be used.
2075 * It avoids possible compiler warnings.
2077 * For functions, place the attribute after the declaration, just before the
2078 * semicolon. For arguments, place the attribute at the beginning of the
2079 * argument declaration.
2081 * |[<!-- language="C" -->
2082 * void my_unused_function (G_GNUC_UNUSED gint unused_argument,
2083 * gint other_argument) G_GNUC_UNUSED;
2086 * See the GNU C documentation for more details.
2091 * @format_idx: the index of the argument corresponding to the
2092 * format string (The arguments are numbered from 1)
2093 * @arg_idx: the index of the first of the format arguments
2095 * Expands to the GNU C format function attribute if the compiler is gcc.
2096 * This is used for declaring functions which take a variable number of
2097 * arguments, with the same syntax as printf(). It allows the compiler
2098 * to type-check the arguments passed to the function.
2100 * Place the attribute after the function declaration, just before the
2103 * See the GNU C documentation for more details.
2105 * |[<!-- language="C" -->
2106 * gint g_snprintf (gchar *string,
2108 * gchar const *format,
2109 * ...) G_GNUC_PRINTF (3, 4);
2115 * @format_idx: the index of the argument corresponding to
2116 * the format string (The arguments are numbered from 1)
2117 * @arg_idx: the index of the first of the format arguments
2119 * Expands to the GNU C format function attribute if the compiler is gcc.
2120 * This is used for declaring functions which take a variable number of
2121 * arguments, with the same syntax as scanf(). It allows the compiler
2122 * to type-check the arguments passed to the function.
2124 * See the GNU C documentation for details.
2129 * @arg_idx: the index of the argument
2131 * Expands to the GNU C format_arg function attribute if the compiler
2132 * is gcc. This function attribute specifies that a function takes a
2133 * format string for a printf(), scanf(), strftime() or strfmon() style
2134 * function and modifies it, so that the result can be passed to a printf(),
2135 * scanf(), strftime() or strfmon() style function (with the remaining
2136 * arguments to the format function the same as they would have been
2137 * for the unmodified string).
2139 * Place the attribute after the function declaration, just before the
2142 * See the GNU C documentation for more details.
2144 * |[<!-- language="C" -->
2145 * gchar *g_dgettext (gchar *domain_name, gchar *msgid) G_GNUC_FORMAT (2);
2150 * G_GNUC_NULL_TERMINATED:
2152 * Expands to the GNU C sentinel function attribute if the compiler is gcc.
2153 * This function attribute only applies to variadic functions and instructs
2154 * the compiler to check that the argument list is terminated with an
2157 * Place the attribute after the declaration, just before the semicolon.
2159 * See the GNU C documentation for more details.
2165 * G_GNUC_WARN_UNUSED_RESULT:
2167 * Expands to the GNU C warn_unused_result function attribute if the compiler
2168 * is gcc. This function attribute makes the compiler emit a warning if the
2169 * result of a function call is ignored.
2171 * Place the attribute after the declaration, just before the semicolon.
2173 * See the GNU C documentation for more details.
2181 * Expands to "" on all modern compilers, and to __FUNCTION__ on gcc
2182 * version 2.x. Don't use it.
2184 * Deprecated: 2.16: Use G_STRFUNC() instead
2188 * G_GNUC_PRETTY_FUNCTION:
2190 * Expands to "" on all modern compilers, and to __PRETTY_FUNCTION__
2191 * on gcc version 2.x. Don't use it.
2193 * Deprecated: 2.16: Use G_STRFUNC() instead
2197 * G_GNUC_NO_INSTRUMENT:
2199 * Expands to the GNU C no_instrument_function function attribute if the
2200 * compiler is gcc. Functions with this attribute will not be instrumented
2201 * for profiling, when the compiler is called with the
2202 * `-finstrument-functions` option.
2204 * Place the attribute after the declaration, just before the semicolon.
2206 * See the GNU C documentation for more details.
2212 * This attribute can be used for marking library functions as being used
2213 * internally to the library only, which may allow the compiler to handle
2214 * function calls more efficiently. Note that static functions do not need
2215 * to be marked as internal in this way. See the GNU C documentation for
2218 * When using a compiler that supports the GNU C hidden visibility attribute,
2219 * this macro expands to __attribute__((visibility("hidden"))).
2220 * When using the Sun Studio compiler, it expands to __hidden.
2222 * Note that for portability, the attribute should be placed before the
2223 * function declaration. While GCC allows the macro after the declaration,
2224 * Sun Studio does not.
2226 * |[<!-- language="C" -->
2228 * void _g_log_fallback_handler (const gchar *log_domain,
2229 * GLogLevelFlags log_level,
2230 * const gchar *message,
2231 * gpointer unused_data);
2240 * Expands to the GNU C may_alias type attribute if the compiler is gcc.
2241 * Types with this attribute will not be subjected to type-based alias
2242 * analysis, but are assumed to alias with any other type, just like char.
2244 * See the GNU C documentation for details.
2251 * @expr: the expression
2253 * Hints the compiler that the expression is likely to evaluate to
2254 * a true value. The compiler may use this information for optimizations.
2256 * |[<!-- language="C" -->
2257 * if (G_LIKELY (random () != 1))
2258 * g_print ("not one");
2261 * Returns: the value of @expr
2268 * @expr: the expression
2270 * Hints the compiler that the expression is unlikely to evaluate to
2271 * a true value. The compiler may use this information for optimizations.
2273 * |[<!-- language="C" -->
2274 * if (G_UNLIKELY (random () == 1))
2275 * g_print ("a random one");
2278 * Returns: the value of @expr
2286 * Expands to a string identifying the current code position.
2292 * Expands to a string identifying the current function.
2297 /* Windows Compatibility Functions {{{1 */
2301 * @title: Windows Compatibility Functions
2302 * @short_description: UNIX emulation on Windows
2304 * These functions provide some level of UNIX emulation on the
2305 * Windows platform. If your application really needs the POSIX
2306 * APIs, we suggest you try the Cygwin project.
2312 * Provided for UNIX emulation on Windows; equivalent to UNIX
2313 * macro %MAXPATHLEN, which is the maximum length of a filename
2314 * (including full path).
2318 * G_WIN32_DLLMAIN_FOR_DLL_NAME:
2319 * @static: empty or "static"
2320 * @dll_name: the name of the (pointer to the) char array where
2321 * the DLL name will be stored. If this is used, you must also
2322 * include `windows.h`. If you need a more complex DLL entry
2323 * point function, you cannot use this
2325 * On Windows, this macro defines a DllMain() function that stores
2326 * the actual DLL name that the code being compiled will be included in.
2328 * On non-Windows platforms, expands to nothing.
2332 * G_WIN32_HAVE_WIDECHAR_API:
2334 * On Windows, this macro defines an expression which evaluates to
2335 * %TRUE if the code is running on a version of Windows where the wide
2336 * character versions of the Win32 API functions, and the wide character
2337 * versions of the C library functions work. (They are always present in
2338 * the DLLs, but don't work on Windows 9x and Me.)
2340 * On non-Windows platforms, it is not defined.
2347 * G_WIN32_IS_NT_BASED:
2349 * On Windows, this macro defines an expression which evaluates to
2350 * %TRUE if the code is running on an NT-based Windows operating system.
2352 * On non-Windows platforms, it is not defined.
2358 /* vim: set foldmethod=marker: */