volumes have names

This commit is contained in:
j 2010-08-09 15:42:02 +02:00
commit 3a57ac389f
5 changed files with 78 additions and 73 deletions

View file

@ -16,15 +16,17 @@ interface nsIOxFF : nsISupports
readonly attribute string version;
boolean login(in AString user);
boolean addVolume();
string import();
float progress(in AString oshash);
boolean access([optional] in boolean request);
boolean logout();
string volumes(in oxICallback callback);
boolean setLocation(in AString name);
boolean renameVolume(in AString name, in AString new_name);
boolean removeVolume(in AString name);
boolean update(in oxICallback callback);
string volumes(in oxICallback callback);
boolean files(in AString volume, in oxICallback callback);
boolean get(in AString oshash, in AString media, in oxICallback callback);
boolean extract(in AString oshash, in AString media, in oxICallback callback);
boolean logout();
};