/********************************************************************************** * . * * ************************************************** * This code was created by Peter Harvey @ CodeByDesign. * Released under LGPL 28.JAN.99 * * Contributions from... * ----------------------------------------------- * Peter Harvey - pharvey@codebydesign.com **************************************************/ #include "ini.h" int iniPropertyFirst( HINI hIni ) { /* SANITY CHECKS */ if ( hIni == NULL ) return INI_ERROR; if ( hIni->hCurObject == NULL ) return INI_NO_DATA; hIni->hCurProperty = hIni->hCurObject->hFirstProperty; if ( hIni->hCurProperty == NULL ) return INI_NO_DATA; return INI_SUCCESS; }