Blame src/sys-util.h

Packit d7e8d0
/* sys-util.h - System utilities not generally used.
Packit d7e8d0
 * Copyright (C) 2013 g10 Code GmbH
Packit d7e8d0
 *
Packit d7e8d0
 * This file is part of GPGME.
Packit d7e8d0
 *
Packit d7e8d0
 * GPGME is free software; you can redistribute it and/or modify it
Packit d7e8d0
 * under the terms of the GNU Lesser General Public License as
Packit d7e8d0
 * published by the Free Software Foundation; either version 2.1 of
Packit d7e8d0
 * the License, or (at your option) any later version.
Packit d7e8d0
 *
Packit d7e8d0
 * GPGME is distributed in the hope that it will be useful, but
Packit d7e8d0
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d7e8d0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit d7e8d0
 * Lesser General Public License for more details.
Packit d7e8d0
 *
Packit d7e8d0
 * You should have received a copy of the GNU Lesser General Public
Packit d7e8d0
 * License along with this program; if not, see <https://www.gnu.org/licenses/>.
Packit d7e8d0
 */
Packit d7e8d0
Packit d7e8d0
#ifndef SYS_UTIL_H
Packit d7e8d0
#define SYS_UTIL_H
Packit d7e8d0
Packit d7e8d0
/*-- {posix,w32}-util.c --*/
Packit d7e8d0
int _gpgme_set_default_gpg_name (const char *name);
Packit d7e8d0
int _gpgme_set_default_gpgconf_name (const char *name);
Packit d7e8d0
int _gpgme_set_override_inst_dir (const char *dir);
Packit d7e8d0
Packit d7e8d0
char *_gpgme_get_gpg_path (void);
Packit d7e8d0
char *_gpgme_get_gpgconf_path (void);
Packit d7e8d0
Packit d7e8d0
#ifdef HAVE_W32_SYSTEM
Packit d7e8d0
const char *_gpgme_get_inst_dir (void);
Packit d7e8d0
#endif
Packit d7e8d0
Packit d7e8d0
#endif /* SYS_UTIL_H */