mirror of
https://github.com/reactos/reactos.git
synced 2025-05-10 20:27:45 +00:00
Missing functions
svn path=/trunk/; revision=75204
This commit is contained in:
parent
9102288ea4
commit
a04fdc1e99
1 changed files with 12 additions and 0 deletions
|
@ -141,6 +141,18 @@ struct Database
|
|||
return FindShimTagid(sdbstring(name.begin(), name.end()));
|
||||
}
|
||||
|
||||
|
||||
void InsertPatchTagid(const sdbstring& name, TAGID tagid);
|
||||
inline void InsertPatchTagid(const std::string& name, TAGID tagid)
|
||||
{
|
||||
InsertPatchTagid(sdbstring(name.begin(), name.end()), tagid);
|
||||
}
|
||||
TAGID FindPatchTagid(const sdbstring& name);
|
||||
inline TAGID FindPatchTagid(const std::string& name)
|
||||
{
|
||||
return FindPatchTagid(sdbstring(name.begin(), name.end()));
|
||||
}
|
||||
|
||||
std::string Name;
|
||||
GUID ID;
|
||||
|
||||
|
|
Loading…
Reference in a new issue