Build Lunapaint from Contrib.
[AROS-Contrib.git] / libini / iniGotoBookmark.c
blob291c501bd21df36076f9aba9b16f05df72a4347e
1 /**********************************************************************************
2 * iniGotoBookmark
5 **************************************************
6 * This code was created by Peter Harvey @ CodeByDesign.
7 * Released under LGPL 28.JAN.99
9 * Contributions from...
10 * -----------------------------------------------
11 * PAH = Peter Harvey - pharvey@codebydesign.com
12 * -----------------------------------------------
14 * PAH 18.MAR.99 Created.
15 **************************************************/
17 #include "inifile_intern.h"
18 #include "ini.h"
19 #include <aros/libcall.h>
21 /*****************************************************************************
22 NAME */
23 AROS_LH1(int, iniGotoBookmark,
25 /* SYNOPSIS */
26 AROS_LHA(INIBOOKMARK, IniBookmark, D0),
28 /* LOCATION */
29 struct Library *, inifileBase, 18, inifile)
31 /* FUNCTION
33 INPUTS
35 RESULT
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
45 INTERNALS
47 HISTORY
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 if ( IniBookmark.hIni == NULL )
54 return INI_ERROR;
56 (IniBookmark.hIni)->hCurObject = IniBookmark.hCurObject;
57 (IniBookmark.hIni)->hCurProperty = IniBookmark.hCurProperty;
59 return INI_SUCCESS;
61 AROS_LIBFUNC_EXIT
62 } /* iniGotoBookmark */