~ubuntu-branches/ubuntu/precise/gnupg2/precise-updates

« back to all changes in this revision

Viewing changes to jnlib/w32help.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2007-09-30 02:50:40 UTC
  • mto: (5.1.14 hardy) (7.1.1 squeeze) (1.1.13 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20070930025040-xmkpdrcp5fguuqpz
Tags: upstream-2.0.7
ImportĀ upstreamĀ versionĀ 2.0.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* w32help.h - W32 speicif functions
 
2
 * Copyright (C) 2007  Free Software Foundation, Inc.
 
3
 *
 
4
 * This file is part of JNLIB.
 
5
 *
 
6
 * JNLIB is free software; you can redistribute it and/or modify it
 
7
 * under the terms of the GNU Lesser General Public License as
 
8
 * published by the Free Software Foundation; either version 3 of
 
9
 * the License, or (at your option) any later version.
 
10
 *
 
11
 * JNLIB is distributed in the hope that it will be useful, but
 
12
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef LIBJNLIB_W32HELP_H
 
21
#define LIBJNLIB_W32HELP_H
 
22
#ifdef HAVE_W32_SYSTEM
 
23
 
 
24
/*-- w32-reg.c --*/
 
25
char *read_w32_registry_string (const char *root,
 
26
                                const char *dir, const char *name );
 
27
int write_w32_registry_string (const char *root, const char *dir,
 
28
                               const char *name, const char *value);
 
29
 
 
30
#ifdef USE_SIMPLE_GETTEXT
 
31
int set_gettext_file (const char *filename, const char *regkey);
 
32
const char *gettext (const char *msgid );
 
33
const char *ngettext (const char *msgid1, const char *msgid2,
 
34
                      unsigned long int n);
 
35
#endif /*USE_SIMPLE_GETTEXT*/
 
36
 
 
37
 
 
38
#endif /*HAVE_W32_SYSTEM*/
 
39
#endif /*LIBJNLIB_MISCHELP_H*/