blob: 07a45f905301f505f04044b7f21442fc57c8393a (
plain) (
tree)
|
|
#ifndef DEF_PART_NS_H
#define DEF_PART_NS_H
#include <Devices/BlockDevice.proto.h>
#include <Library/Vector.class.h>
#include <VFS/Partition.class.h>
namespace Part {
extern Vector<BlockDevice*> devices;
extern Vector<Partition*> partitions;
void registerDevice(BlockDevice* dev);
void unregisterDevice(BlockDevice* dev);
u32int getDeviceID(BlockDevice* dev);
}
#endif
|