AxibugEmuOnline/References/VirtuaNESex_src_191105/NameTableView.h
2024-08-05 17:58:53 +08:00

47 lines
766 B
C++
Raw Blame History

//
// ƒpƒ^<5E>[ƒ“ƒrƒ…<C692>[ƒNƒ‰ƒX
//
#ifndef __CNAMETABLEVIEW_INCLUDED__
#define __CNAMETABLEVIEW_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <string>
using namespace std;
#include "Wnd.h"
class CNameTableView : public CWnd
{
public:
// Constructor/Destructor
CNameTableView();
~CNameTableView();
// Override from CWnd
BOOL Create( HWND hWndParent );
void Destroy();
protected:
// Message map
WND_MESSAGE_MAP()
WNDMSG OnCreate( WNDMSGPARAM );
WNDMSG OnClose( WNDMSGPARAM );
WNDMSG OnDestroy( WNDMSGPARAM );
WNDMSG OnTimer( WNDMSGPARAM );
//
struct BITMAPHDR {
BITMAPINFOHEADER bih;
RGBQUAD rgb[16];
} m_BitmapHdr;
//
RGBQUAD m_Palette[256];
LPBYTE m_lpPattern;
private:
};
#endif // !__CNAMETABLEVIEW_INCLUDED__