You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __DISKS_H__ |
|
#define __DISKS_H__ |
|
|
|
#include <Eina.h> |
|
#include <Ecore.h> |
|
|
|
Eina_Bool |
|
disk_usage_get(const char *mountpoint, unsigned long *total, unsigned long *used); |
|
|
|
char * |
|
disk_mount_point_get(const char *path); |
|
|
|
Eina_List * |
|
disks_get(void); |
|
|
|
|
|
#endif
|
|
|