From ea754ce7105d96b6cf17dec86c0e40f4cca26559 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 27 Jun 2011 03:47:12 +0200 Subject: [PATCH] BPackageResolvableData: Compatible version field Add fields haveCompatibleVersion and compatibleVersion. This allows us to have a minimum version a resolvable is backwards compatible with. --- headers/os/package/hpkg/PackageInfoAttributeValue.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/headers/os/package/hpkg/PackageInfoAttributeValue.h b/headers/os/package/hpkg/PackageInfoAttributeValue.h index ab38858522..40055e08b3 100644 --- a/headers/os/package/hpkg/PackageInfoAttributeValue.h +++ b/headers/os/package/hpkg/PackageInfoAttributeValue.h @@ -32,7 +32,9 @@ struct BPackageResolvableData { BPackageResolvableType type; const char* name; bool haveVersion; + bool haveCompatibleVersion; BPackageVersionData version; + BPackageVersionData compatibleVersion; };