]> git.saurik.com Git - ldid.git/blob - ldid.hpp
ad85f0354251102d63a5c727de81904d20145e99
[ldid.git] / ldid.hpp
1 #ifndef LDID_HPP
2 #define LDID_HPP
3
4 #include <cstdlib>
5 #include <map>
6 #include <streambuf>
7 #include <string>
8
9 namespace ldid {
10
11 typedef std::map<uint32_t, std::string> Slots;
12
13 void Sign(void *idata, size_t isize, std::streambuf &output, const std::string &name, const std::string &entitlements, const std::string &key, const Slots &slots);
14
15 }
16
17 #endif//LDID_HPP