12 lines
155 B
C++
12 lines
155 B
C++
![]() |
#pragma once
|
||
|
|
||
|
namespace memory
|
||
|
{
|
||
|
struct signature
|
||
|
{
|
||
|
const char* m_name;
|
||
|
const char* m_ida;
|
||
|
void (*m_on_signature_found)(memory::handle ptr);
|
||
|
};
|
||
|
}
|