1 | /********************************************************************************** |
2 | * iniCursor |
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 iniCursor( HINI hIni, HINI hIniCursor ) |
21 | { |
22 | if ( hIni == NULL || hIniCursor == NULL ) |
23 | return INI_ERROR; |
24 | |
25 | memcpy( hIniCursor, hIni, sizeof(INI) ); |
26 | |
27 | return INI_SUCCESS; |
28 | } |
29 | |
30 | |
31 | |