summaryrefslogtreecommitdiff
path: root/util.h
blob: aab83ae8f2c9105220704e45d33c2e2204e90312 (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
/*
 * Copyright (C) 2007-2009 Christian Anthon <[email protected]>
 * Copyright (C) 2007-2013 the AUTHORS
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * 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, see <https://www.gnu.org/licenses/>.
 *
 * $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);

#endif