mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
19 lines
280 B
C++
19 lines
280 B
C++
#ifndef _ELFVIEWEX_H_
|
|
#define _ELFVIEWEX_H_
|
|
|
|
#include "ELFFile.h"
|
|
#include "ui_win32\ELFView.h"
|
|
|
|
class CElfViewEx : public CELFView
|
|
{
|
|
public:
|
|
CElfViewEx(HWND);
|
|
virtual ~CElfViewEx();
|
|
|
|
void LoadElf(Framework::CStream&);
|
|
|
|
private:
|
|
CElfFile* m_elf;
|
|
};
|
|
|
|
#endif
|