~audio-recorder/audio-recorder/trunk

1 by Osmo Antero Maatta
Initial import 17.jan.2011
1
#ifndef _SUPPORT_H
2
#define _SUPPORT_H
3
4
#include <glib.h>
5
#include <gdk/gdk.h>
56 by Osmo Antero
Version 0.5
6
#include <glib/gi18n.h>
1 by Osmo Antero Maatta
Initial import 17.jan.2011
7
8
#ifdef HAVE_CONFIG_H
9
#  include "config.h"
10
#endif
11
12
gchar *get_data_directory();
13
gchar *get_package_data_directory();
14
gchar *get_image_directory();
15
gchar *get_image_path(const gchar *image_name);
16
gchar *get_program_name();
17
56 by Osmo Antero
Version 0.5
18
1 by Osmo Antero Maatta
Initial import 17.jan.2011
19
#endif
20
56 by Osmo Antero
Version 0.5
21