chiark / gitweb /
gnupg2 (2.1.17-3) unstable; urgency=medium
[gnupg2.git] / common / w32help.h
1 /* w32help.h - W32 speicif functions
2  * Copyright (C) 2007  Free Software Foundation, Inc.
3  *
4  * This file is part of GnuPG.
5  *
6  * GnuPG is free software; you can redistribute it and/or modify it
7  * under the terms of either
8  *
9  *   - the GNU Lesser General Public License as published by the Free
10  *     Software Foundation; either version 3 of the License, or (at
11  *     your option) any later version.
12  *
13  * or
14  *
15  *   - the GNU General Public License as published by the Free
16  *     Software Foundation; either version 2 of the License, or (at
17  *     your option) any later version.
18  *
19  * or both in parallel, as here.
20  *
21  * GnuPG is distributed in the hope that it will be useful, but
22  * WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24  * General Public License for more details.
25  *
26  * You should have received a copies of the GNU General Public License
27  * and the GNU Lesser General Public License along with this program;
28  * if not, see <https://www.gnu.org/licenses/>.
29  */
30
31 #ifndef GNUPG_COMMON_W32HELP_H
32 #define GNUPG_COMMON_W32HELP_H
33 #ifdef HAVE_W32_SYSTEM
34
35 /*-- w32-reg.c --*/
36 char *read_w32_registry_string (const char *root,
37                                 const char *dir, const char *name );
38
39 /* Other stuff.  */
40 #ifdef HAVE_W32CE_SYSTEM
41 /* Setmode is missing in cegcc but available since CE 5.0.  */
42 int _setmode (int handle, int mode);
43 # define setmode(a,b)   _setmode ((a),(b))
44
45 static inline int
46 umask (int a)
47 {
48   (void)a;
49   return 0;
50 }
51
52
53 #endif /*HAVE_W32CE_SYSTEM*/
54
55 #endif /*HAVE_W32_SYSTEM*/
56 #endif /*GNUPG_COMMON_MISCHELP_H*/