1/**********************************************************************************
2 * iniGotoBookmark
3 *
4 *
5 **************************************************
6 * This code was created by Peter Harvey @ CodeByDesign.
7 * Released under LGPL 28.JAN.99
8 *
9 * Contributions from...
10 * -----------------------------------------------
11 * PAH = Peter Harvey - pharvey@codebydesign.com
12 * -----------------------------------------------
13 *
14 * PAH 18.MAR.99 Created.
15 **************************************************/
16
17#include <config.h>
18#include "ini.h"
19
20int iniGotoBookmark( INIBOOKMARK IniBookmark )
21{
22 if ( IniBookmark.hIni == NULL )
23 return INI_ERROR;
24
25 (IniBookmark.hIni)->hCurObject = IniBookmark.hCurObject;
26 (IniBookmark.hIni)->hCurProperty = IniBookmark.hCurProperty;
27
28 return INI_SUCCESS;
29}
30
31
32