summaryrefslogtreecommitdiff
path: root/quotaon.h
diff options
context:
space:
mode:
Diffstat (limited to 'quotaon.h')
-rw-r--r--quotaon.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/quotaon.h b/quotaon.h
new file mode 100644
index 0000000..ced9b2a
--- /dev/null
+++ b/quotaon.h
@@ -0,0 +1,22 @@
+/*
+ * Common types, macros, and routines for enabling/disabling
+ * quota for each of the various Linux quota formats.
+ */
+
+#include "pot.h"
+#include "quota.h"
+#include "quotasys.h"
+#include "bylabel.h"
+#include "common.h"
+#include "quotaio.h"
+
+#define STATEFLAG_ON 0x01
+#define STATEFLAG_OFF 0x02
+#define STATEFLAG_ALL 0x04
+#define STATEFLAG_VERBOSE 0x08
+#define STATEFLAG_VERYVERBOSE 0x10
+
+typedef int (newstate_t) (struct mntent * mnt, int type, char *file, int flags);
+extern int v1_newstate(struct mntent *mnt, int type, char *file, int flags);
+extern int v2_newstate(struct mntent *mnt, int type, char *file, int flags);
+extern int xfs_newstate(struct mntent *mnt, int type, char *file, int flags);