summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-05-13 21:02:59 +0200
committerJim Meyering <meyering@redhat.com>2011-05-27 17:07:45 +0200
commitf82ca7907f2e1a614ce0f649ad08fc3739e5d1eb (patch)
treedac59efb4871116bcc308a3a27f1e09e6437264d /include
parentc955442aeaedc312b13405ae1b0c431c68a47290 (diff)
downloadparted-f82ca7907f2e1a614ce0f649ad08fc3739e5d1eb.tar.gz
remove all top-level FS-op code and the clearfat program
Diffstat (limited to 'include')
-rw-r--r--include/parted/filesys.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/parted/filesys.h b/include/parted/filesys.h
index 45673ee..44258f5 100644
--- a/include/parted/filesys.h
+++ b/include/parted/filesys.h
@@ -38,20 +38,6 @@ typedef const struct _PedFileSystemOps PedFileSystemOps;
struct _PedFileSystemOps {
PedGeometry* (*probe) (PedGeometry* geom);
- int (*clobber) (PedGeometry* geom);
-
- PedFileSystem* (*open) (PedGeometry* geom);
- PedFileSystem* (*create) (PedGeometry* geom, PedTimer* timer);
- int (*close) (PedFileSystem* fs);
- int (*check) (PedFileSystem* fs, PedTimer* timer);
- PedFileSystem* (*copy) (const PedFileSystem* fs, PedGeometry* geom,
- PedTimer* timer);
- int (*resize) (PedFileSystem* fs, PedGeometry* geom, PedTimer* timer);
-
- PedConstraint* (*get_create_constraint) (const PedDevice* dev);
- PedConstraint* (*get_resize_constraint) (const PedFileSystem* fs);
- PedConstraint* (*get_copy_constraint) (const PedFileSystem* fs,
- const PedDevice* dev);
};
/**