summaryrefslogtreecommitdiff
path: root/support.h
diff options
context:
space:
mode:
authorRod Smith <rodsmith@rodsbooks.com>2017-07-21 21:48:13 -0400
committerRod Smith <rodsmith@rodsbooks.com>2017-07-21 21:48:13 -0400
commit503e9ada12d38394381442a944d5c9da847800b6 (patch)
tree9ee8654a5dd22cea6fb0cf0d0b161c4bb764400e /support.h
parente7452642ac5fa514bd359bc3f93b6b46b1714213 (diff)
downloadsgdisk-503e9ada12d38394381442a944d5c9da847800b6.tar.gz
Initial commit of support for moving main partition table to arbitrary
location on disk (within limits based on existing partitions).
Diffstat (limited to 'support.h')
-rw-r--r--support.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/support.h b/support.h
index 078fef2..f607d4a 100644
--- a/support.h
+++ b/support.h
@@ -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);