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, iniObjectFirst
,
26 AROS_LHA(HINI
, hIni
, D0
),
29 struct Library
*, inifileBase
, 22, inifile
)
49 *****************************************************************************/
57 hIni
->hCurObject
= hIni
->hFirstObject
;
58 iniPropertyFirst( hIni
);
60 if ( hIni
->hCurObject
== NULL
)
66 } /* iniObjectFirst */