aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sisreqrecord.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/sisreqrecord.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/sisreqrecord.h')
-rw-r--r--lib/sisreqrecord.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/lib/sisreqrecord.h b/lib/sisreqrecord.h
index 44206a1..7219fe4 100644
--- a/lib/sisreqrecord.h
+++ b/lib/sisreqrecord.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;
/**
@@ -40,14 +38,14 @@ public:
/**
* Populate the fields.
*/
- SisRC fillFrom(uchar* buf, int* base, off_t len, SISFile* file);
-
- uint32 m_uid;
- uint16 m_major;
- uint16 m_minor;
- uint32 m_variant;
- uint32* m_nameLengths;
- uint32* m_namePtrs;
+ SisRC fillFrom(uint8_t* buf, int* base, off_t len, SISFile* file);
+
+ uint32_t m_uid;
+ uint16_t m_major;
+ uint16_t m_minor;
+ uint32_t m_variant;
+ uint32_t* m_nameLengths;
+ uint32_t* m_namePtrs;
};
#endif