mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 14:07:58 +03:00
18 lines
290 B
C
18 lines
290 B
C
![]() |
#ifndef _MEMORYVIEWPTR_H_
|
||
|
#define _MEMORYVIEWPTR_H_
|
||
|
|
||
|
#include "MemoryView.h"
|
||
|
|
||
|
class CMemoryViewPtr : public CMemoryView
|
||
|
{
|
||
|
public:
|
||
|
CMemoryViewPtr(HWND, RECT*);
|
||
|
void SetData(void*, uint32);
|
||
|
|
||
|
protected:
|
||
|
virtual uint8 GetByte(uint32);
|
||
|
void* m_pData;
|
||
|
};
|
||
|
|
||
|
#endif
|