Blame src/plugins/fs/vfat.h

Packit Service 158247
#include <glib.h>
Packit Service 158247
#include <blockdev/utils.h>
Packit Service 158247
Packit Service 158247
#ifndef BD_FS_VFAT
Packit Service 158247
#define BD_FS_VFAT
Packit Service 158247
Packit Service 158247
typedef struct BDFSVfatInfo {
Packit Service 158247
    gchar *label;
Packit Service 158247
    gchar *uuid;
Packit Service 158247
    guint64 cluster_size;
Packit Service 158247
    guint64 cluster_count;
Packit Service 158247
    guint64 free_cluster_count;
Packit Service 158247
} BDFSVfatInfo;
Packit Service 158247
Packit Service 158247
BDFSVfatInfo* bd_fs_vfat_info_copy (BDFSVfatInfo *data);
Packit Service 158247
void bd_fs_vfat_info_free (BDFSVfatInfo *data);
Packit Service 158247
Packit Service 158247
gboolean bd_fs_vfat_mkfs (const gchar *device, const BDExtraArg **extra, GError **error);
Packit Service 158247
gboolean bd_fs_vfat_wipe (const gchar *device, GError **error);
Packit Service 158247
gboolean bd_fs_vfat_check (const gchar *device, const BDExtraArg **extra, GError **error);
Packit Service 158247
gboolean bd_fs_vfat_repair (const gchar *device, const BDExtraArg **extra, GError **error);
Packit Service 158247
gboolean bd_fs_vfat_set_label (const gchar *device, const gchar *label, GError **error);
Packit Service 158247
BDFSVfatInfo* bd_fs_vfat_get_info (const gchar *device, GError **error);
Packit Service 158247
gboolean bd_fs_vfat_resize (const gchar *device, guint64 new_size, GError **error);
Packit Service 158247
Packit Service 158247
#endif  /* BD_FS_VFAT */