summaryrefslogtreecommitdiffstats
path: root/balkan/balkan.h
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-12-03 21:24:07 +0000
committerJeremy Katz <katzj@redhat.com>2002-12-03 21:24:07 +0000
commit8345996b3b9f995c464789292c21e2496fe80189 (patch)
tree49149f75685d96ff9078343db4158911b1b34664 /balkan/balkan.h
parent093639f925df83f717caeb8a930b22968b9309c8 (diff)
downloadanaconda-8345996b3b9f995c464789292c21e2496fe80189.tar.gz
anaconda-8345996b3b9f995c464789292c21e2496fe80189.tar.xz
anaconda-8345996b3b9f995c464789292c21e2496fe80189.zip
die balkan die die die
Diffstat (limited to 'balkan/balkan.h')
-rw-r--r--balkan/balkan.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/balkan/balkan.h b/balkan/balkan.h
deleted file mode 100644
index bc687cd2c..000000000
--- a/balkan/balkan.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef H_BALKAN
-#define H_BALKAN 1
-#define _LARGEFILE_SOURCE 1
-#define _LARGEFILE64_SOURCE 1
-
-#define BALKAN_ERROR_ERRNO 1
-#define BALKAN_ERROR_BADMAGIC 2
-#define BALKAN_ERROR_BADTABLE 3
-
-#define BALKAN_PART_DOS 1
-#define BALKAN_PART_EXT2 2
-#define BALKAN_PART_OTHER 3
-#define BALKAN_PART_NTFS 4
-#define BALKAN_PART_SWAP 5
-#define BALKAN_PART_UFS 6
-#define BALKAN_PART_RAID 7
-
-struct partition {
- long startSector;
- long size; /* in sectors */
- int type; /* -1 for "not used" */
-};
-
-struct partitionTable {
- int allocationUnit; /* in sectors */
- int maxNumPartitions;
- int sectorSize;
- struct partition parts[50];
-};
-
-int balkanReadTable(int fd, struct partitionTable * table);
-
-#endif