Removed incomplete file search tool. It was in "contrib"
[AROS-Contrib.git] / libini / iniGetBookmark.c
blob45f1d95a50c009bee40fe38d8bc01f3f4a79b21c
1 /**********************************************************************************
2 * iniGetBookmark
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 /*****************************************************************************
23 NAME */
24 AROS_LH2(int, iniGetBookmark,
26 /* SYNOPSIS */
27 AROS_LHA(HINI, hIni, D0),
28 AROS_LHA(HINIBOOKMARK, hIniBookmark, D1),
30 /* LOCATION */
31 struct Library *, inifileBase, 17, inifile)
33 /* FUNCTION
35 INPUTS
37 RESULT
39 NOTES
41 EXAMPLE
43 BUGS
45 SEE ALSO
47 INTERNALS
49 HISTORY
51 *****************************************************************************/
53 AROS_LIBFUNC_INIT
55 if ( hIni == NULL || hIniBookmark == NULL )
56 return INI_ERROR;
58 hIniBookmark->hIni = hIni;
59 hIniBookmark->hCurObject = hIni->hCurObject;
60 hIniBookmark->hCurProperty = hIni->hCurProperty;
62 return INI_SUCCESS;
64 AROS_LIBFUNC_EXIT
65 } /* iniGetBookmark */