Refactored SearchForSigs to use omin_ea to maintain consistency with whatever IDA is showing in the address bars. (This removes the need for __EA64__ awareness.)

Added a more helpful README.md to the project.
Resolved project warnings.
This commit is contained in:
gir489
2018-06-14 20:50:04 -05:00
parent 1117b9f872
commit a8422ba964
5 changed files with 44 additions and 62 deletions

View File

@@ -165,7 +165,7 @@ void IDAToCRC( const qstring& strSig, ea_t& dwCRC32, ea_t& dwMask )
{
if (i <= iCount && szMask[i] == 'x')
{
dwMask |= (1 << i);
dwMask |= (1i64 << i);
}
else
{
@@ -186,7 +186,7 @@ void CodeToCRC( const qstring& strByteSig, const qstring& strMask, ea_t& dwCRC32
{
if (i <= iCount && szMask[i] == 'x')
{
dwMask |= 1 << i;
dwMask |= 1i64 << i;
}
else
{