alternative to assert
[gtkD.git] / gtkD / src / glib / GLib.d
blob5661d6d6549022c412f092789a17855fce0ba6a0
1 /*
2 * This file is part of gtkD.
4 * gtkD 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 * gtkD 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 gtkD; 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 * module aliases:
47 * local aliases:
50 module glib.GLib;
52 version(noAssert)
54 version(Tango)
56 import tango.io.Stdout; // use the tango loging?
60 private import gtkc.glibtypes;
62 private import gtkc.glib;
65 private import glib.Str;
70 /**
71 * Description
72 * GLib provides version information, primarily useful in configure checks
73 * for builds that have a configure script. Applications will not
74 * typically use the features described here.
76 public class Version
79 /**
87 /**
88 * Checks that the GLib library in use is compatible with the
89 * given version. Generally you would pass in the constants
90 * GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION
91 * as the three arguments to this function; that produces
92 * a check that the library in use is compatible with
93 * the version of GLib the application or module was compiled
94 * against.
95 * Compatibility is defined by two things: first the version
96 * of the running library is newer than the version
97 * required_major.required_minor.required_micro. Second
98 * the running library must be binary compatible with the
99 * version required_major.required_minor.required_micro
100 * (same major version.)
101 * required_major:
102 * the required major version.
103 * required_minor:
104 * the required minor version.
105 * required_micro:
106 * the required micro version.
107 * Returns:
108 * NULL if the GLib library is compatible with the
109 * given version, or a string describing the version mismatch.
110 * The returned string is owned by GLib and must not be modified
111 * or freed.
112 * Since 2.6
114 public static char[] checkVersion(uint requiredMajor, uint requiredMinor, uint requiredMicro)
116 // const gchar* glib_check_version (guint required_major, guint required_minor, guint required_micro);
117 return Str.toString(glib_check_version(requiredMajor, requiredMinor, requiredMicro) );