blob: 0aef150cf7ef5d45374e6a9a590038d5f2fc8094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __LIBSLAB_UTILS_H__
#define __LIBSLAB_UTILS_H__
#include <glib.h>
#include <gtk/gtk.h>
#include <libmate-desktop/mate-desktop-item.h>
G_BEGIN_DECLS
MateDesktopItem *libslab_mate_desktop_item_new_from_unknown_id (const gchar *id);
gint libslab_strcmp (const gchar *a, const gchar *b);
GdkScreen *libslab_get_current_screen (void);
G_END_DECLS
#endif /* __LIBSLAB_UTILS_H__ */
|