mirror of
https://github.com/libretro/Play-.git
synced 2025-02-04 07:56:10 +00:00
20 lines
289 B
C++
20 lines
289 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
|