summaryrefslogtreecommitdiff
path: root/util.h
blob: bcddff7ff1eba233950d98548a4af6c9bff887a8 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * util.h
 *
 * by Christian Anthon 2007
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 3 or later of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * $Id: util.h,v 1.15 2013/07/11 19:16:07 mdpetch Exp $
 */

#ifndef UTIL_H
#define UTIL_H

#include <glib.h>
#include <stdio.h>

extern char *prefsdir;
extern char *datadir;
extern char *pkg_datadir;
extern char *docdir;
extern char *getDataDir(void);
extern char *getPkgDataDir(void);
extern char *getDocDir(void);

#define BuildFilename(file) g_build_filename(getPkgDataDir(), file, NULL)
#define BuildFilename2(file1, file2) g_build_filename(getPkgDataDir(), file1, file2, NULL)

extern void PrintSystemError(const char *message);
extern void PrintError(const char *message);
extern FILE *GetTemporaryFile(const char *nameTemplate, char **retName);

#if defined(WIN32)
extern int TEMP_g_mkstemp(char *tmpl);
extern int TEMP_g_file_open_tmp(const char *tmpl, char **name_used, GError **pError);
#endif

#endif