]> git.saurik.com Git - apt.git/blobdiff - apt-inst/contrib/arfile.h
Merge commit 'e2073b0276226b625897ef475f225bf8f508719e' as 'triehash'
[apt.git] / apt-inst / contrib / arfile.h
index 2be1323d1d97ffd375f99d94ce6ae93c60efc390..297303a9d8403de1e28412c1368d5fcfa21b6685 100644 (file)
 
 
 #include <string>
+#include <apt-pkg/macros.h>
+#ifndef APT_8_CLEANER_HEADERS
+#include <apt-pkg/fileutl.h>
+#endif
 
 class FileFd;
 
@@ -58,7 +62,7 @@ struct ARArchive::Member
    unsigned long long Size;
    
    // Location of the data.
-   unsigned long Start;
+   unsigned long long Start;
    Member *Next;
    
    Member() : Start(0), Next(0) {};