blob: aa5c2811d5042b59a1a15da7e026252afd4726e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* libwnck based tasklist Applet.
* (C) 2001 Alexander Larsson
*
* Authors: Alexander Larsson
*
*/
#ifndef __WINDOW_LIST_H__
#define __WINDOW_LIST_H__
#include <glib.h>
#include <mate-panel-applet.h>
#ifdef __cplusplus
extern "C" {
#endif
gboolean window_list_applet_fill(MatePanelApplet* applet);
#ifdef __cplusplus
}
#endif
#endif
|