mirror of
https://github.com/stellarbear/YaraSharp
synced 2026-06-08 17:36:09 +00:00
27 lines
404 B
C++
27 lines
404 B
C++
#pragma once
|
|
|
|
namespace YaraSharp
|
|
{
|
|
public ref class YSMatch sealed
|
|
{
|
|
public:
|
|
|
|
property uint64_t Base;
|
|
property uint64_t Offset;
|
|
property array<uint8_t>^ Data;
|
|
|
|
YSMatch();
|
|
YSMatch(YR_MATCH* match);
|
|
};
|
|
|
|
public ref class YSMatches sealed
|
|
{
|
|
public:
|
|
|
|
property YSRule^ Rule;
|
|
property Dictionary<String^, List<YSMatch^>^>^ Matches;
|
|
|
|
YSMatches();
|
|
YSMatches(YR_RULE* matchingRule);
|
|
};
|
|
} |