Icons for Radium and Shellplayer.
[AROS-Contrib.git] / MultiMedia / radium / common / disk_lpbs.c
blob65f28b86b526d4cf84e1266a52888bac19b31b51
1 /* Copyright 2000 Kjetil S. Matheussen
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public License
5 as published by the Free Software Foundation; either version 2
6 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include "nsmtracker.h"
24 #include "disk.h"
25 #include "disk_placement_proc.h"
27 #include "disk_lpbs_proc.h"
31 void SaveLPBs(struct LPBs *lpb){
32 if(lpb==NULL) return;
33 DC_start("LPBs");
35 do{
36 SavePlace(&lpb->l.p);
37 DC_SaveI(lpb->lpb);
38 lpb=NextLPB(lpb);
39 }while(lpb!=NULL);
41 DC_end();
46 void LoadLPBs(struct LPBs **to){
48 struct LPBs *lpb;
50 while(dc.success){
51 DC_fgets();
52 if(dc.ret[0]=='/') return;
53 lpb=DC_alloc(sizeof(struct LPBs));
54 lpb->Tline=atoi(dc.ret);
55 lpb->Tcounter=DC_LoadU32();
56 lpb->Tdividor=DC_LoadU32();
57 lpb->lpb=DC_LoadI();
58 ListAddElement3(to,&lpb->l);
61 error:
62 return;