diff options
author | zhuyaliang <[email protected]> | 2023-10-04 16:12:05 +0800 |
---|---|---|
committer | mouse <[email protected]> | 2023-10-05 21:54:04 +0800 |
commit | 5e3b73e620de7d3cb1aa4285594e0a6d9a78dee6 (patch) | |
tree | 38f356c4263f9836673340da7f2eb7809ed6c88b /libmate-desktop/mate-desktop.h.in | |
parent | e174117cb48ec90b041a2faa28016964c5a0b92b (diff) | |
download | mate-desktop-5e3b73e620de7d3cb1aa4285594e0a6d9a78dee6.tar.bz2 mate-desktop-5e3b73e620de7d3cb1aa4285594e0a6d9a78dee6.tar.xz |
Rename libmate-desktop/{mate-desktop.h => mate-desktop.h.in} add MATE_DESKTOP_VERSION marco
Diffstat (limited to 'libmate-desktop/mate-desktop.h.in')
-rw-r--r-- | libmate-desktop/mate-desktop.h.in | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/libmate-desktop/mate-desktop.h.in b/libmate-desktop/mate-desktop.h.in new file mode 100644 index 0000000..3e2bc6c --- /dev/null +++ b/libmate-desktop/mate-desktop.h.in @@ -0,0 +1,47 @@ +/* + * mate-desktop.h: general functions for libmate-desktop + * + * Copyright (C) 2013 Stefano Karapetsas + * Copyright (C) 2013-2021 MATE Developers + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301, USA. + * + * Authors: + * Stefano Karapetsas <[email protected]> + */ + +#ifndef __MATE_DESKTOP_H__ +#define __MATE_DESKTOP_H__ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <glib.h> + +G_BEGIN_DECLS + +#define MATE_DESKTOP_CHECK_VERSION(major,minor,micro) \ + (MATE_MAJOR > (major) || \ + (MATE_MAJOR == (major) && MATE_MINOR > (minor)) || \ + (MATE_MAJOR == (major) && MATE_MINOR == (minor) && \ + MATE_MICRO >= (micro))) + +#define MATE_DESKTOP_VERSION "@PACKAGE_VERSION@" + +G_END_DECLS + +#endif /* __MATE_DESKTOP_H__ */ |