Initial commit of support for moving main partition table to arbitrary

location on disk (within limits based on existing partitions).
This commit is contained in:
Rod Smith
2017-07-21 21:48:13 -04:00
parent e7452642ac
commit 503e9ada12
10 changed files with 123 additions and 10 deletions

View File

@@ -72,7 +72,7 @@
using namespace std;
string ReadString(void);
int GetNumber(int low, int high, int def, const string & prompt);
uint64_t GetNumber(uint64_t low, uint64_t high, uint64_t def, const string & prompt);
char GetYN(void);
uint64_t GetSectorNum(uint64_t low, uint64_t high, uint64_t def, uint64_t sSize, const std::string& prompt);
uint64_t IeeeToInt(string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def = 0);