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.
28 lines
472 B
28 lines
472 B
#ifndef __FILESYSTEMS_H__ |
|
#define __FILESYSTEMS_H__ |
|
|
|
#include <Eina.h> |
|
|
|
typedef struct { |
|
unsigned long long total; |
|
unsigned long long used; |
|
} _Usage; |
|
|
|
typedef struct _File_System { |
|
char *path; |
|
char *mount; |
|
char *type_name; |
|
unsigned int type; |
|
_Usage usage; |
|
} File_System; |
|
|
|
Eina_List * |
|
file_system_info_all_get(void); |
|
|
|
void |
|
file_system_info_free(File_System *fs); |
|
|
|
Eina_Bool |
|
file_system_in_use(const char *name); |
|
|
|
#endif
|
|
|