home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
TextEditors&Viewers
/
Texteditors
/
FFRED10.LHA
/
fpl
/
ArchiveRemove.FPL
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-09-22
|
325 b
|
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();");