| 1 | #include <config.h> | 
|---|---|
| 2 | #include "lst.h" | 
| 3 | |
| 4 | int 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 | 
| 1 | #include <config.h> | 
|---|---|
| 2 | #include "lst.h" | 
| 3 | |
| 4 | int 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 |