blob: e41e88520cc8cacb2d14712110acf61e6db9f277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __LIBSLAB_UTILS_H__
#define __LIBSLAB_UTILS_H__
#include <glib.h>
#include <gtk/gtk.h>
#include <libmate-desktop/mate-desktop-item.h>
#ifdef __cplusplus
extern "C" {
#endif
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);
#ifdef __cplusplus
}
#endif
#endif
|