~siretart/gnucash/ubuntu-fullsource

« back to all changes in this revision

Viewing changes to src/app-utils/gnc-help-utils.h

  • Committer: Reinhard Tartler
  • Date: 2008-08-03 07:25:46 UTC
  • Revision ID: siretart@tauware.de-20080803072546-y6p8xda8zpfi62ys
import gnucash_2.2.4.orig.tar.gz

The original tarball had the md5sum: 27e660297dc5b8ce574515779d05a5a5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * gnc-help-utils.h
 
3
 *
 
4
 * Copyright (C) 2007 Andreas Koehler <andi5.py@gmx.net>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of version 2 of the GNU General Public
 
8
 * License as published by the Free Software Foundation.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, contact:
 
17
 *
 
18
 * Free Software Foundation           Voice:  +1-617-542-5942
 
19
 * 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652
 
20
 * Boston, MA  02110-1301,  USA       gnu@gnu.org
 
21
 */
 
22
 
 
23
#ifndef __GNC_HELP_UTILS_H__
 
24
#define __GNC_HELP_UTILS_H__
 
25
 
 
26
/** Launch HTML Help Viewer and open a given CHM file.  Use HtmlHelpW
 
27
 *  if available, or fallback to spawning hh.exe.  Possibly scroll to a
 
28
 *  given anchor within the document.
 
29
 *
 
30
 *  @param chmfile The name of CHM help file to be opened.
 
31
 *
 
32
 *  @param anchor The anchor the help browser should scroll to.
 
33
 */
 
34
void gnc_show_htmlhelp(const gchar *chmfile, const gchar *anchor);
 
35
 
 
36
#endif /* __GNC_HELP_UTILS_H__ */