summaryrefslogtreecommitdiff
path: root/apt-pkg/pkgcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'apt-pkg/pkgcache.h')
-rw-r--r--apt-pkg/pkgcache.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h
index 476a01514..0b61b0048 100644
--- a/apt-pkg/pkgcache.h
+++ b/apt-pkg/pkgcache.h
@@ -341,8 +341,13 @@ struct pkgCache::Header
map_id_t DependsDataCount;
map_fileid_t ReleaseFileCount;
map_fileid_t PackageFileCount;
+#if APT_PKG_ABI <= 600
map_fileid_t VerFileCount;
map_fileid_t DescFileCount;
+#else
+ map_id_t VerFileCount;
+ map_id_t DescFileCount;
+#endif
map_id_t ProvidesCount;
/** \brief index of the first PackageFile structure
@@ -599,8 +604,9 @@ struct pkgCache::VerFile
map_pointer<VerFile> NextFile;
/** \brief position in the package file */
map_filesize_t Offset; // File offset
- /** @TODO document pkgCache::VerFile::Size */
- map_filesize_t Size;
+#if APT_PKG_ABI <= 600
+ [[deprecated("No usage in src:apt, try MaxVerFileSize instead")]] map_filesize_t Size;
+#endif
};
/*}}}*/
// DescFile structure /*{{{*/
@@ -613,8 +619,9 @@ struct pkgCache::DescFile
map_pointer<DescFile> NextFile;
/** \brief position in the file */
map_filesize_t Offset; // File offset
- /** @TODO document pkgCache::DescFile::Size */
- map_filesize_t Size;
+#if APT_PKG_ABI <= 600
+ [[deprecated("No usage in src:apt, try MaxDescFileSize instead")]] map_filesize_t Size;
+#endif
};
/*}}}*/
// Version structure /*{{{*/