I've no idea here...
[gtkD.git] / src / glib / GLib.d
blobaf4230328c38603c3555b5b9fff17f525349ac78
1 /*
2 * This file is part of duit.
4 * duit is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2.1 of the License, or
7 * (at your option) any later version.
9 * duit 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
12 * GNU Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with duit; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 // generated automatically - do not change
20 // find conversion definition on APILookup.txt
21 // implement new conversion functionalities on the wrap.utils pakage
24 * Conversion parameters:
25 * inFile = glib-Version-Information.html
26 * outPack = glib
27 * outFile = GLib
28 * strct =
29 * realStrct=
30 * ctorStrct=
31 * clss = Version
32 * interf =
33 * class Code: No
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - glib_
40 * omit structs:
41 * omit prefixes:
42 * omit code:
43 * imports:
44 * - glib.Str
45 * structWrap:
46 * local aliases:
49 module glib.GLib;
51 private import glib.glibtypes;
53 private import lib.glib;
55 private import glib.Str;
57 /**
58 * Description
59 * GLib provides version information, primarily useful in configure checks
60 * for builds that have a configure script. Applications will not
61 * typically use the features described here.
63 public class Version
66 /**
74 /**
75 * Checks that the GLib library in use is compatible with the
76 * given version. Generally you would pass in the constants
77 * GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION
78 * as the three arguments to this function; that produces
79 * a check that the library in use is compatible with
80 * the version of GLib the application or module was compiled
81 * against.
82 * Compatibility is defined by two things: first the version
83 * of the running library is newer than the version
84 * required_major.required_minor.required_micro. Second
85 * the running library must be binary compatible with the
86 * version required_major.required_minor.required_micro
87 * (same major version.)
88 * required_major:
89 * the required major version.
90 * required_minor:
91 * the required minor version.
92 * required_micro:
93 * the required micro version.
94 * Returns:
95 * NULL if the GLib library is compatible with the
96 * given version, or a string describing the version mismatch.
97 * The returned string is owned by GLib and must not be modified
98 * or freed.
99 * Since 2.6
101 public static char[] checkVersion(uint requiredMajor, uint requiredMinor, uint requiredMicro)
103 // const gchar* glib_check_version (guint required_major, guint required_minor, guint required_micro);
104 return Str.toString(glib_check_version(requiredMajor, requiredMinor, requiredMicro) );