mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Added MD5 file hashes to Beef
This commit is contained in:
parent
32c09bf94b
commit
61468d818f
33 changed files with 598 additions and 143 deletions
|
@ -3382,6 +3382,12 @@ BF_EXPORT void BF_CALLTYPE BfParser_SetCharIdData(BfParser* bfParser, uint8* dat
|
|||
memcpy(bfParser->mParserData->mCharIdData, data, length);
|
||||
}
|
||||
|
||||
BF_EXPORT void BF_CALLTYPE BfParser_SetHashMD5(BfParser* bfParser, Val128* md5Hash)
|
||||
{
|
||||
if (md5Hash != NULL)
|
||||
bfParser->mParserData->mMD5Hash = *md5Hash;
|
||||
}
|
||||
|
||||
BF_EXPORT void BF_CALLTYPE BfParser_Delete(BfParser* bfParser)
|
||||
{
|
||||
if (bfParser->mNextRevision != NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue