From eecba3b5fcb47a01e6e13ee1940def989f6dd22d Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Thu, 28 Feb 2002 20:56:59 +0000 Subject: - Added SIS stuff by Daniel Brahneborg --- lib/sisreqrecord.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 lib/sisreqrecord.h (limited to 'lib/sisreqrecord.h') diff --git a/lib/sisreqrecord.h b/lib/sisreqrecord.h new file mode 100644 index 0000000..bd9aff2 --- /dev/null +++ b/lib/sisreqrecord.h @@ -0,0 +1,30 @@ +#ifndef _SISREQRECORD_H +#define _SISREQRECORD_H + +#include "sistypes.h" + +class SISFile; + +/** + * Information about an application that must be installed prior to the + * current one. + */ +class SISReqRecord +{ +public: + + /** + * Populate the fields. + */ + void fillFrom(uchar* buf, int* base, SISFile* file); + + uint32 m_uid; + uint16 m_major; + uint16 m_minor; + uint32 m_variant; + uint32* m_nameLengths; + uint32* m_namePtrs; +}; + +#endif + -- cgit v1.2.3