aboutsummaryrefslogtreecommitdiffstats
path: root/ldid.hpp
diff options
context:
space:
mode:
authorTeutates <103068388+Teutates@users.noreply.github.com>2022-07-20 16:56:49 -0400
committerTeutates <103068388+Teutates@users.noreply.github.com>2022-07-20 16:56:49 -0400
commit6aa24b5090f74615d8b2a387c1b562ac5c206aef (patch)
tree0c776842604449abe1e5d332a96fcc7e94008c61 /ldid.hpp
parentf2eb981cf8d20ab013d559fa7d383e656954f12d (diff)
downloadldid-6aa24b5090f74615d8b2a387c1b562ac5c206aef.tar.gz
ldid-6aa24b5090f74615d8b2a387c1b562ac5c206aef.tar.zst
ldid-6aa24b5090f74615d8b2a387c1b562ac5c206aef.zip
Change platform to a uint8_t
* Allows for arbitrary customization of the value
Diffstat (limited to 'ldid.hpp')
-rw-r--r--ldid.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldid.hpp b/ldid.hpp
index ef77477..861fbb3 100644
--- a/ldid.hpp
+++ b/ldid.hpp
@@ -161,7 +161,7 @@ Bundle Sign(const std::string &root, Folder &folder, const std::string &key, con
typedef std::map<uint32_t, Hash> Slots;
-Hash Sign(const void *idata, size_t isize, std::streambuf &output, const std::string &identifier, const std::string &entitlements, bool merge, const std::string &requirements, const std::string &key, const Slots &slots, uint32_t flags, bool platform, const Progress &progress);
+Hash Sign(const void *idata, size_t isize, std::streambuf &output, const std::string &identifier, const std::string &entitlements, bool merge, const std::string &requirements, const std::string &key, const Slots &slots, uint32_t flags, uint8_t platform, const Progress &progress);
}