1#include <config.h>
2#include "lst.h"
3
4int lstGotoBookMark( HLSTBOOKMARK hLstBookMark )
5{
6 if ( !hLstBookMark )
7 return LST_ERROR;
8
9 hLstBookMark->hLst->hCurrent = hLstBookMark->hCurrent;
10
11 return LST_SUCCESS;
12}
13
14
15
16