chiark / gitweb /
Replace use of variable-length-arrays.
[gnupg2.git] / common / common-defs.h
1 /* common-defs.h - Private declarations for common/
2  * Copyright (C) 2006 Free Software Foundation, Inc.
3  *
4  * This file is part of GnuPG.
5  *
6  * This file is free software; you can redistribute it and/or modify
7  * it 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  * This file is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, see <https://www.gnu.org/licenses/>.
28  */
29
30 #ifndef GNUPG_COMMON_COMMON_DEFS_H
31 #define GNUPG_COMMON_COMMON_DEFS_H
32
33
34 /* Dummy replacement for getenv.  */
35 #ifndef HAVE_GETENV
36 #define getenv(a)  (NULL)
37 #endif
38
39 #ifdef HAVE_W32CE_SYSTEM
40 #define getpid() GetCurrentProcessId ()
41 #endif
42
43
44 /*-- ttyio.c --*/
45 void tty_private_set_rl_hooks (void (*init_stream) (FILE *),
46                                void (*set_completer) (rl_completion_func_t*),
47                                void (*inhibit_completion) (int),
48                                void (*cleanup_after_signal) (void),
49                                char *(*readline_fun) (const char*),
50                                void (*add_history_fun) (const char*));
51
52
53
54 #endif /*GNUPG_COMMON_COMMON_DEFS_H*/