diff options
author | rbuj <[email protected]> | 2020-12-02 10:19:16 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-12-13 16:20:04 +0100 |
commit | 1f964c265a0f45c064d312dcd51f985e877cbc55 (patch) | |
tree | e7520456bc97ba82c19fdbbd9f5fd69807919069 /mateweather/src/mateweather-applet.h | |
parent | fbca7353191c20b3ce70fe2390491305ba3968fa (diff) | |
download | mate-applets-1f964c265a0f45c064d312dcd51f985e877cbc55.tar.bz2 mate-applets-1f964c265a0f45c064d312dcd51f985e877cbc55.tar.xz |
mateweather: Use common subdirs - src, data
Diffstat (limited to 'mateweather/src/mateweather-applet.h')
-rw-r--r-- | mateweather/src/mateweather-applet.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mateweather/src/mateweather-applet.h b/mateweather/src/mateweather-applet.h new file mode 100644 index 00000000..eef4f8bb --- /dev/null +++ b/mateweather/src/mateweather-applet.h @@ -0,0 +1,30 @@ +#ifndef __MATEWEATHER_APPLET_H_ +#define __MATEWEATHER_APPLET_H_ + +/* $Id$ */ + +/* + * Papadimitriou Spiros <[email protected]> + * + * This code released under the GNU GPL. + * Read the file COPYING for more information. + * + * Main applet widget + * + */ + +#define MATEWEATHER_I_KNOW_THIS_IS_UNSTABLE + +#include "mateweather.h" + +G_BEGIN_DECLS + +extern void mateweather_applet_create(MateWeatherApplet *gw_applet); +extern gint timeout_cb (gpointer data); +extern gint suncalc_timeout_cb (gpointer data); +extern void mateweather_update (MateWeatherApplet *applet); + +G_END_DECLS + +#endif /* __MATEWEATHER_APPLET_H_ */ + |