aboutsummaryrefslogtreecommitdiffstats
path: root/lib/siscomponentrecord.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/siscomponentrecord.h')
-rw-r--r--lib/siscomponentrecord.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/siscomponentrecord.h b/lib/siscomponentrecord.h
index f2a85da..d15e754 100644
--- a/lib/siscomponentrecord.h
+++ b/lib/siscomponentrecord.h
@@ -1,4 +1,4 @@
-/** -*-c++-*-
+/* -*-c++-*-
* $Id$
*
* This file is part of plptools.
@@ -25,8 +25,6 @@
#include "sistypes.h"
-#include <sys/types.h>
-
class SISFile;
/**
@@ -42,24 +40,24 @@ public:
/**
* Populate the fields.
*/
- SisRC fillFrom(uchar* buf, int base, off_t len, SISFile* sisFile);
+ SisRC fillFrom(uint8_t* buf, int base, off_t len, SISFile* sisFile);
/**
* Return the name for the given language.
* The number is the sequence number in the list of language records
* in the sis file.
*/
- uchar* getName(int no);
+ uint8_t* getName(int no);
private:
- uint32* m_nameLengths;
- uint32* m_namePtrs;
+ uint32_t* m_nameLengths;
+ uint32_t* m_namePtrs;
/**
* The extracted names.
*/
- uchar** m_names;
+ uint8_t** m_names;
};