1 /**********************************************************************************
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 19.MAR.99 Now sets hCurProperty to hFirstProperty when found
15 **************************************************/
17 #include "inifile_intern.h"
19 #include <aros/libcall.h>
21 /*****************************************************************************
23 AROS_LH1(int, iniObjectNext
,
26 AROS_LHA(HINI
, hIni
, D0
),
29 struct Library
*, inifileBase
, 25, inifile
)
49 *****************************************************************************/
57 if ( hIni
->hCurObject
== NULL
)
60 hIni
->hCurObject
= hIni
->hCurObject
->pNext
;
61 iniPropertyFirst( hIni
);
63 if ( hIni
->hCurObject
== NULL
)