1 | /********************************************************************************** |
2 | * iniGetBookmark |
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 | |
20 | int iniGetBookmark( HINI hIni, HINIBOOKMARK hIniBookmark ) |
21 | { |
22 | if ( hIni == NULL || hIniBookmark == NULL ) |
23 | return INI_ERROR; |
24 | |
25 | hIniBookmark->hIni = hIni; |
26 | hIniBookmark->hCurObject = hIni->hCurObject; |
27 | hIniBookmark->hCurProperty = hIni->hCurProperty; |
28 | |
29 | return INI_SUCCESS; |
30 | } |
31 | |
32 | |
33 | |