From 546a9c7c369df465021feecb20f6a8f81b6df6bc Mon Sep 17 00:00:00 2001 From: srs5694 Date: Tue, 26 Jan 2010 16:00:26 -0500 Subject: New files to support disk I/O restructuring and (currently broken) Windows version. --- gptpart.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gptpart.h') diff --git a/gptpart.h b/gptpart.h index b1a580f..2ae27e3 100644 --- a/gptpart.h +++ b/gptpart.h @@ -16,8 +16,8 @@ #define __GPTPART_H #include +#include #include -#include #include "support.h" #include "parttypes.h" @@ -53,13 +53,13 @@ class GPTPart { // Simple data retrieval: struct GUIDData GetType(void) {return partitionType;} uint16_t GetHexType(void); - char* GetNameType(char* theName); + string GetNameType(void); struct GUIDData GetUniqueGUID(void) {return uniqueGUID;} uint64_t GetFirstLBA(void) {return firstLBA;} uint64_t GetLastLBA(void) {return lastLBA;} uint64_t GetLengthLBA(void); uint64_t GetAttributes(void) {return attributes;} - unsigned char* GetName(unsigned char* theName); + string GetName(void); // Simple data assignment: void SetType(struct GUIDData t) {partitionType = t;} -- cgit v1.2.1