MicrOS
|
#include <stdbool.h>
#include "filesystems/fat/fat.h"
#include "partition.h"
#include "klibrary/kvector.h"
#include "mbr.h"
#include "drivers/floppy/floppy.h"
#include "drivers/harddisk/harddisk.h"
#include "filesystems/fat/fat_header.h"
#include "hdd_wrapper/hdd_wrapper.h"
#include "partition_info.h"
Go to the source code of this file.
Functions | |
void | partitions_init () |
void | partitions_init_floppy () |
void | partitions_init_harddisks (HARDDISK_ATA_MASTER_SLAVE type, HARDDISK_ATA_BUS_TYPE bus) |
partition * | partitions_get_by_path (char *path) |
partition * | partitions_get_by_symbol (char symbol) |
int | partitions_get_count () |
void | partitions_get_symbols (char *symbol_array) |
filesystem_type | partitions_get_filesystem_type (char *name) |
void | partitions_get_info (char symbol, partition_info *info) |
partition* partitions_get_by_path | ( | char * | path | ) |
partition* partitions_get_by_symbol | ( | char | symbol | ) |
int partitions_get_count | ( | ) |
filesystem_type partitions_get_filesystem_type | ( | char * | name | ) |
void partitions_get_info | ( | char | symbol, |
partition_info * | info | ||
) |
void partitions_get_symbols | ( | char * | symbol_array | ) |
void partitions_init | ( | ) |
void partitions_init_floppy | ( | ) |
void partitions_init_harddisks | ( | HARDDISK_ATA_MASTER_SLAVE | type, |
HARDDISK_ATA_BUS_TYPE | bus | ||
) |