Elfspy/elfspy/ELFObject.h

19 lines
232 B
C
Raw Normal View History

2016-09-16 17:45:35 +02:00
#ifndef ELFSPY_ELFOBJECT_HXX
#define ELFSPY_ELFOBJECT_HXX
2018-03-15 19:58:59 +01:00
#include <string>
2016-09-16 17:45:35 +02:00
namespace spy
{
struct ELFObject
{
const char* name_ = "no name";
unsigned char* base_ = nullptr;
size_t size_ = 0;
};
} // namespace spy
#endif