home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 10
/
aminetcdnumber101996.iso
/
Aminet
/
text
/
edit
/
FrexxEdA.lha
/
FrexxEd
/
fpl
/
ArchiveRemove.FPL
< prev
next >
Wrap
Text File
|
1995-07-19
|
325b
|
19 lines
export int ArchiveRemove()
{
string protect;
int count;
protect=ReadInfo("protection");
for (count=0; count<strlen(protect); count++) {
switch(protect[count]) {
case 'a':
protect[count]=' ';
break;
}
}
SetInfo(-1, "protection", protect);
return(0);
}
Hook("Save", "ArchiveRemove();");