From dbfc3ee2b91ed26eb00e85a32c715995f4fce41b Mon Sep 17 00:00:00 2001 From: Daniel Brahneborg Date: Mon, 4 Mar 2002 14:31:16 +0000 Subject: Use plp standard types. Fix copyright include. --- lib/siscomponentrecord.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'lib/siscomponentrecord.h') 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 - 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; }; -- cgit v1.2.3