1 /**********************************************************************************
5 **************************************************
6 * This code was created by Peter Harvey @ CodeByDesign.
7 * Released under LGPL 28.JAN.99
9 * Contributions from...
10 * -----------------------------------------------
11 * Peter Harvey - pharvey@codebydesign.com
12 **************************************************/
14 #include "inifile_intern.h"
16 #include <aros/libcall.h>
18 /*****************************************************************************
20 AROS_LH1(int, iniPropertyNext
,
23 AROS_LHA(HINI
, hIni
, D0
),
26 struct Library
*, inifileBase
, 36, inifile
)
46 *****************************************************************************/
54 if ( hIni
->hCurObject
== NULL
)
57 if ( hIni
->hCurProperty
== NULL
)
60 hIni
->hCurProperty
= hIni
->hCurProperty
->pNext
;
62 if ( hIni
->hCurProperty
== NULL
)
68 } /* iniPropertyNext */