aboutsummaryrefslogtreecommitdiffstats
path: root/lib/siscomponentrecord.h
diff options
context:
space:
mode:
authorDaniel Brahneborg <basic@chello.se>2002-03-04 14:31:16 +0000
committerDaniel Brahneborg <basic@chello.se>2002-03-04 14:31:16 +0000
commitdbfc3ee2b91ed26eb00e85a32c715995f4fce41b (patch)
tree82605dba9b7a1d14c3e952af32bef2852d60703b /lib/siscomponentrecord.h
parentb68ab4b0002aa0c59fdbbfee3076e35aeac44d68 (diff)
downloadplptools-dbfc3ee2b91ed26eb00e85a32c715995f4fce41b.tar.gz
plptools-dbfc3ee2b91ed26eb00e85a32c715995f4fce41b.tar.bz2
plptools-dbfc3ee2b91ed26eb00e85a32c715995f4fce41b.zip
Use plp standard types.
Fix copyright include.
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;
};