haiku/headers/private/storage/DiskDevice.h
Tyler Dauwalder 9f4ec30369 DiskDevice API v2.3.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3376 a95241bf-73f2-0310-859d-f6bbb57e9c96
2003-05-28 21:47:29 +00:00

36 lines
914 B
C++

//----------------------------------------------------------------------
// This software is part of the OpenBeOS distribution and is covered
// by the OpenBeOS license.
//---------------------------------------------------------------------
#ifndef _DISK_DEVICE_H
#define _DISK_DEVICE_H
class BDiskDevice : public BPartition {
public:
bool IsRemovable() const;
bool HasMedia() const;
status_t Eject(bool update = false);
status_t Update(bool *updated = NULL);
void Unset();
bool IsModified() const;
int32 CommitModifications(bool synchronously = true,
BMessenger progressMessenger = BMessenger(),
bool receiveCompleteProgressUpdates = true,
BMessage *template = NULL);
private:
friend class BDiskDeviceList;
friend class BDiskDeviceRoster;
char fDeviceType[B_FILE_NAME_LENGTH];
char fPath[B_FILE_NAME_LENGTH];
bool fIsRemovable;
status_t fMediaStatus;
}
#endif // _DISK_DEVICE_H