2007-06-06 20:12:30 +02:00
|
|
|
/* w32help.h - W32 speicif functions
|
|
|
|
* Copyright (C) 2007 Free Software Foundation, Inc.
|
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* This file is part of GnuPG.
|
2007-06-06 20:12:30 +02:00
|
|
|
*
|
2017-02-24 13:48:28 +01:00
|
|
|
* GnuPG is free software; you can redistribute and/or modify this
|
|
|
|
* part of GnuPG under the terms of either
|
2011-09-30 12:52:11 +02:00
|
|
|
*
|
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
2007-06-06 20:12:30 +02:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* GnuPG is distributed in the hope that it will be useful, but
|
2007-06-06 20:12:30 +02:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2007-06-06 20:12:30 +02:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* You should have received a copies of the GNU General Public License
|
|
|
|
* and the GNU Lesser General Public License along with this program;
|
2016-11-05 12:02:19 +01:00
|
|
|
* if not, see <https://www.gnu.org/licenses/>.
|
2007-06-06 20:12:30 +02:00
|
|
|
*/
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#ifndef GNUPG_COMMON_W32HELP_H
|
|
|
|
#define GNUPG_COMMON_W32HELP_H
|
2021-03-04 10:16:48 +01:00
|
|
|
|
2021-03-04 17:14:02 +01:00
|
|
|
/*-- w32-cmdline.c --*/
|
2021-03-04 16:52:03 +01:00
|
|
|
|
2021-03-04 10:16:48 +01:00
|
|
|
/* This module is also part of the Unix tests. */
|
2021-03-04 16:52:03 +01:00
|
|
|
char **w32_parse_commandline (char *cmdline, int globing, int *r_argv,
|
|
|
|
int *r_itemsalloced);
|
2021-03-04 10:16:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2007-06-06 20:12:30 +02:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
|
|
|
|
/*-- w32-reg.c --*/
|
|
|
|
char *read_w32_registry_string (const char *root,
|
|
|
|
const char *dir, const char *name );
|
2022-08-02 12:25:23 +02:00
|
|
|
char *read_w32_reg_string (const char *key, int *r_hklm_fallback);
|
2007-06-06 20:12:30 +02:00
|
|
|
|
2010-04-14 13:24:02 +02:00
|
|
|
|
2007-06-06 20:12:30 +02:00
|
|
|
#endif /*HAVE_W32_SYSTEM*/
|
2015-04-24 16:42:28 +02:00
|
|
|
#endif /*GNUPG_COMMON_MISCHELP_H*/
|